nautobot 2.4.5__py3-none-any.whl → 2.4.7__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of nautobot might be problematic. Click here for more details.
- nautobot/apps/forms.py +2 -0
- nautobot/circuits/templates/circuits/providernetwork.html +1 -1
- nautobot/circuits/templates/circuits/providernetwork_retrieve.html +2 -55
- nautobot/circuits/views.py +20 -23
- nautobot/cloud/templates/cloud/cloudaccount_retrieve.html +2 -40
- nautobot/cloud/views.py +12 -0
- nautobot/core/api/mixins.py +10 -0
- nautobot/core/api/urls.py +2 -2
- nautobot/core/api/views.py +39 -1
- nautobot/core/celery/encoders.py +2 -2
- nautobot/core/forms/__init__.py +2 -0
- nautobot/core/forms/fields.py +23 -7
- nautobot/core/forms/utils.py +1 -0
- nautobot/core/forms/widgets.py +18 -0
- nautobot/core/jobs/bulk_actions.py +1 -1
- nautobot/core/management/commands/generate_test_data.py +1 -1
- nautobot/core/models/name_color_content_types.py +9 -0
- nautobot/core/models/validators.py +7 -0
- nautobot/core/settings.py +0 -14
- nautobot/core/settings.yaml +0 -28
- nautobot/core/tables.py +6 -1
- nautobot/core/templates/generic/object_retrieve.html +1 -1
- nautobot/core/templates/widgets/sluginput.html +5 -1
- nautobot/core/templatetags/helpers.py +15 -1
- nautobot/core/testing/api.py +18 -0
- nautobot/core/testing/integration.py +6 -2
- nautobot/core/tests/nautobot_config.py +0 -2
- nautobot/core/tests/runner.py +17 -140
- nautobot/core/tests/test_api.py +4 -4
- nautobot/core/tests/test_authentication.py +83 -4
- nautobot/core/tests/test_forms.py +11 -8
- nautobot/core/tests/test_graphql.py +9 -0
- nautobot/core/tests/test_jobs.py +7 -0
- nautobot/core/ui/object_detail.py +47 -3
- nautobot/core/utils/lookup.py +2 -2
- nautobot/dcim/factory.py +2 -0
- nautobot/dcim/filters/__init__.py +5 -0
- nautobot/dcim/forms.py +27 -1
- nautobot/dcim/migrations/0068_alter_softwareimagefile_download_url.py +19 -0
- nautobot/dcim/migrations/0069_softwareimagefile_external_integration.py +25 -0
- nautobot/dcim/models/devices.py +9 -2
- nautobot/dcim/models/locations.py +9 -0
- nautobot/dcim/tables/devices.py +1 -0
- nautobot/dcim/templates/dcim/device_list.html +1 -1
- nautobot/dcim/templates/dcim/devicetype.html +1 -1
- nautobot/dcim/templates/dcim/manufacturer.html +1 -63
- nautobot/dcim/templates/dcim/module_list.html +1 -1
- nautobot/dcim/templates/dcim/moduletype_retrieve.html +1 -1
- nautobot/dcim/templates/dcim/softwareimagefile_retrieve.html +4 -0
- nautobot/dcim/tests/integration/test_module_bay_position.py +125 -0
- nautobot/dcim/tests/test_api.py +74 -31
- nautobot/dcim/tests/test_filters.py +2 -0
- nautobot/dcim/tests/test_models.py +78 -0
- nautobot/dcim/tests/test_views.py +7 -1
- nautobot/dcim/urls.py +1 -45
- nautobot/dcim/views.py +35 -66
- nautobot/extras/choices.py +4 -0
- nautobot/extras/filters/__init__.py +6 -0
- nautobot/extras/forms/forms.py +83 -11
- nautobot/extras/models/customfields.py +10 -9
- nautobot/extras/plugins/marketplace_manifest.yml +18 -0
- nautobot/extras/signals.py +43 -4
- nautobot/extras/tables.py +4 -5
- nautobot/extras/tasks.py +4 -2
- nautobot/extras/templates/extras/contact_retrieve.html +1 -58
- nautobot/extras/templates/extras/exporttemplate.html +1 -53
- nautobot/extras/templates/extras/inc/panel_changelog.html +1 -1
- nautobot/extras/templates/extras/inc/panel_jobhistory.html +1 -1
- nautobot/extras/templates/extras/status.html +1 -37
- nautobot/extras/templates/extras/team_retrieve.html +1 -58
- nautobot/extras/tests/integration/test_notes.py +1 -1
- nautobot/extras/tests/test_api.py +22 -7
- nautobot/extras/tests/test_changelog.py +4 -4
- nautobot/extras/tests/test_customfields.py +27 -0
- nautobot/extras/tests/test_plugins.py +19 -13
- nautobot/extras/tests/test_relationships.py +9 -0
- nautobot/extras/tests/test_tags.py +2 -2
- nautobot/extras/tests/test_views.py +37 -6
- nautobot/extras/urls.py +3 -100
- nautobot/extras/views.py +111 -133
- nautobot/ipam/tables.py +7 -2
- nautobot/ipam/templates/ipam/namespace_retrieve.html +0 -41
- nautobot/ipam/templates/ipam/service.html +2 -46
- nautobot/ipam/templates/ipam/service_edit.html +1 -17
- nautobot/ipam/templates/ipam/service_retrieve.html +7 -0
- nautobot/ipam/tests/migration/__init__.py +0 -0
- nautobot/ipam/tests/migration/test_migrations.py +510 -0
- nautobot/ipam/tests/test_api.py +66 -36
- nautobot/ipam/tests/test_filters.py +0 -10
- nautobot/ipam/tests/test_views.py +44 -2
- nautobot/ipam/urls.py +2 -47
- nautobot/ipam/utils/migrations.py +185 -152
- nautobot/ipam/utils/testing.py +177 -0
- nautobot/ipam/views.py +95 -157
- nautobot/project-static/css/base.css +5 -0
- nautobot/project-static/docs/404.html +0 -2
- nautobot/project-static/docs/apps/index.html +0 -2
- nautobot/project-static/docs/apps/nautobot-apps.html +0 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/__init__.html +0 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/admin.html +0 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/api.html +0 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/change_logging.html +0 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/choices.html +0 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/config.html +0 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/constants.html +0 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/datasources.html +0 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/events.html +0 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/exceptions.html +0 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/factory.html +0 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +0 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +62 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/graphql.html +0 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/jobs.html +0 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/models.html +47 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/querysets.html +0 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html +0 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +18 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +0 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +70 -5
- nautobot/project-static/docs/code-reference/nautobot/apps/urls.html +0 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/utils.html +0 -2
- nautobot/project-static/docs/code-reference/nautobot/apps/views.html +0 -2
- nautobot/project-static/docs/development/apps/api/configuration-view.html +0 -2
- nautobot/project-static/docs/development/apps/api/database-backend-config.html +0 -2
- nautobot/project-static/docs/development/apps/api/models/django-admin.html +0 -2
- nautobot/project-static/docs/development/apps/api/models/global-search.html +0 -2
- nautobot/project-static/docs/development/apps/api/models/graphql.html +0 -2
- nautobot/project-static/docs/development/apps/api/models/index.html +0 -2
- nautobot/project-static/docs/development/apps/api/nautobot-app-config.html +0 -2
- nautobot/project-static/docs/development/apps/api/platform-features/custom-validators.html +0 -2
- nautobot/project-static/docs/development/apps/api/platform-features/filter-extensions.html +0 -2
- nautobot/project-static/docs/development/apps/api/platform-features/git-repository-content.html +0 -2
- nautobot/project-static/docs/development/apps/api/platform-features/index.html +0 -2
- nautobot/project-static/docs/development/apps/api/platform-features/jinja2-filters.html +0 -2
- nautobot/project-static/docs/development/apps/api/platform-features/jobs.html +0 -2
- nautobot/project-static/docs/development/apps/api/platform-features/populating-extensibility-features.html +0 -2
- nautobot/project-static/docs/development/apps/api/platform-features/secrets-providers.html +0 -2
- nautobot/project-static/docs/development/apps/api/platform-features/table-extensions.html +0 -2
- nautobot/project-static/docs/development/apps/api/platform-features/uniquely-identify-objects.html +0 -2
- nautobot/project-static/docs/development/apps/api/prometheus.html +0 -2
- nautobot/project-static/docs/development/apps/api/setup.html +0 -2
- nautobot/project-static/docs/development/apps/api/testing.html +0 -89
- nautobot/project-static/docs/development/apps/api/ui-extensions/banners.html +0 -2
- nautobot/project-static/docs/development/apps/api/ui-extensions/home-page.html +0 -2
- nautobot/project-static/docs/development/apps/api/ui-extensions/index.html +0 -2
- nautobot/project-static/docs/development/apps/api/ui-extensions/navigation.html +0 -2
- nautobot/project-static/docs/development/apps/api/ui-extensions/object-views.html +0 -2
- nautobot/project-static/docs/development/apps/api/views/base-template.html +0 -2
- nautobot/project-static/docs/development/apps/api/views/core-view-overrides.html +0 -2
- nautobot/project-static/docs/development/apps/api/views/django-generic-views.html +0 -2
- nautobot/project-static/docs/development/apps/api/views/help-documentation.html +0 -2
- nautobot/project-static/docs/development/apps/api/views/index.html +0 -2
- nautobot/project-static/docs/development/apps/api/views/nautobot-generic-views.html +0 -2
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewset.html +0 -2
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewsetrouter.html +0 -2
- nautobot/project-static/docs/development/apps/api/views/notes.html +0 -2
- nautobot/project-static/docs/development/apps/api/views/rest-api.html +0 -2
- nautobot/project-static/docs/development/apps/api/views/urls.html +0 -2
- nautobot/project-static/docs/development/apps/index.html +0 -2
- nautobot/project-static/docs/development/apps/migration/code-updates.html +0 -2
- nautobot/project-static/docs/development/apps/migration/dependency-updates.html +1 -3
- nautobot/project-static/docs/development/apps/migration/from-v1.html +0 -2
- nautobot/project-static/docs/development/apps/migration/model-updates/dcim.html +0 -2
- nautobot/project-static/docs/development/apps/migration/model-updates/extras.html +0 -2
- nautobot/project-static/docs/development/apps/migration/model-updates/global.html +0 -2
- nautobot/project-static/docs/development/apps/migration/model-updates/ipam.html +0 -2
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/best-practices.html +0 -2
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/custom-content.html +0 -2
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/index.html +0 -2
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/migration-steps.html +0 -2
- nautobot/project-static/docs/development/apps/porting-from-netbox.html +0 -2
- nautobot/project-static/docs/development/core/application-registry.html +0 -2
- nautobot/project-static/docs/development/core/best-practices.html +3 -5
- nautobot/project-static/docs/development/core/bootstrap-ui.html +0 -2
- nautobot/project-static/docs/development/core/caching.html +0 -2
- nautobot/project-static/docs/development/core/controllers.html +0 -2
- nautobot/project-static/docs/development/core/docker-compose-advanced-use-cases.html +0 -2
- nautobot/project-static/docs/development/core/generic-views.html +0 -2
- nautobot/project-static/docs/development/core/getting-started.html +78 -109
- nautobot/project-static/docs/development/core/homepage.html +0 -2
- nautobot/project-static/docs/development/core/index.html +0 -2
- nautobot/project-static/docs/development/core/minikube-dev-environment-for-k8s-jobs.html +0 -2
- nautobot/project-static/docs/development/core/model-checklist.html +0 -2
- nautobot/project-static/docs/development/core/model-features.html +0 -2
- nautobot/project-static/docs/development/core/natural-keys.html +0 -2
- nautobot/project-static/docs/development/core/navigation-menu.html +0 -2
- nautobot/project-static/docs/development/core/release-checklist.html +1 -3
- nautobot/project-static/docs/development/core/role-internals.html +0 -2
- nautobot/project-static/docs/development/core/settings.html +0 -2
- nautobot/project-static/docs/development/core/style-guide.html +1 -3
- nautobot/project-static/docs/development/core/templates.html +0 -2
- nautobot/project-static/docs/development/core/testing.html +24 -200
- nautobot/project-static/docs/development/core/ui-component-framework.html +0 -2
- nautobot/project-static/docs/development/core/user-preferences.html +0 -2
- nautobot/project-static/docs/development/index.html +0 -2
- nautobot/project-static/docs/development/jobs/index.html +0 -2
- nautobot/project-static/docs/development/jobs/migration/from-v1.html +0 -2
- nautobot/project-static/docs/index.html +0 -2
- nautobot/project-static/docs/media/user-guide/administration/getting-started/nautobot-cloud.png +0 -0
- nautobot/project-static/docs/objects.inv +0 -0
- nautobot/project-static/docs/overview/application_stack.html +1 -3
- nautobot/project-static/docs/overview/design_philosophy.html +0 -2
- nautobot/project-static/docs/release-notes/index.html +0 -2
- nautobot/project-static/docs/release-notes/version-1.0.html +0 -2
- nautobot/project-static/docs/release-notes/version-1.1.html +0 -2
- nautobot/project-static/docs/release-notes/version-1.2.html +0 -2
- nautobot/project-static/docs/release-notes/version-1.3.html +0 -2
- nautobot/project-static/docs/release-notes/version-1.4.html +0 -2
- nautobot/project-static/docs/release-notes/version-1.5.html +0 -2
- nautobot/project-static/docs/release-notes/version-1.6.html +0 -2
- nautobot/project-static/docs/release-notes/version-2.0.html +0 -2
- nautobot/project-static/docs/release-notes/version-2.1.html +0 -2
- nautobot/project-static/docs/release-notes/version-2.2.html +0 -2
- nautobot/project-static/docs/release-notes/version-2.3.html +0 -2
- nautobot/project-static/docs/release-notes/version-2.4.html +364 -3
- nautobot/project-static/docs/search/search_index.json +1 -1
- nautobot/project-static/docs/sitemap.xml +290 -290
- nautobot/project-static/docs/sitemap.xml.gz +0 -0
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/ldap.html +0 -2
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/remote.html +0 -2
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/sso.html +0 -2
- nautobot/project-static/docs/user-guide/administration/configuration/index.html +0 -2
- nautobot/project-static/docs/user-guide/administration/configuration/redis.html +0 -2
- nautobot/project-static/docs/user-guide/administration/configuration/settings.html +2 -50
- nautobot/project-static/docs/user-guide/administration/configuration/time-zones.html +0 -2
- nautobot/project-static/docs/user-guide/administration/guides/celery-queues.html +0 -2
- nautobot/project-static/docs/user-guide/administration/guides/docker.html +0 -2
- nautobot/project-static/docs/user-guide/administration/guides/health-checks.html +0 -2
- nautobot/project-static/docs/user-guide/administration/guides/permissions.html +71 -2
- nautobot/project-static/docs/user-guide/administration/guides/prometheus-metrics.html +0 -2
- nautobot/project-static/docs/user-guide/administration/guides/replicating-nautobot.html +0 -2
- nautobot/project-static/docs/user-guide/administration/guides/request-profiling.html +0 -2
- nautobot/project-static/docs/user-guide/administration/guides/s3-django-storage.html +0 -2
- nautobot/project-static/docs/user-guide/administration/guides/selinux-troubleshooting.html +0 -2
- nautobot/project-static/docs/user-guide/administration/installation/app-install.html +0 -2
- nautobot/project-static/docs/user-guide/administration/installation/external-authentication.html +0 -2
- nautobot/project-static/docs/user-guide/administration/installation/http-server.html +3 -3
- nautobot/project-static/docs/user-guide/administration/installation/index.html +257 -18
- nautobot/project-static/docs/user-guide/administration/installation/install_system.html +0 -2
- nautobot/project-static/docs/user-guide/administration/installation/nautobot.html +0 -2
- nautobot/project-static/docs/user-guide/administration/installation/services.html +0 -2
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-netbox.html +0 -2
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-postgresql.html +0 -2
- nautobot/project-static/docs/user-guide/administration/security/index.html +0 -2
- nautobot/project-static/docs/user-guide/administration/security/notices.html +0 -2
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-server.html +1 -3
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-shell.html +0 -2
- nautobot/project-static/docs/user-guide/administration/upgrading/database-backup.html +0 -2
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.html +0 -2
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/before-you-upgrade.html +0 -2
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/for-developers.html +0 -2
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/index.html +0 -2
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/whats-changed.html +0 -2
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/region-and-site-data-migration-guide.html +0 -2
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html +0 -2
- nautobot/project-static/docs/user-guide/administration/upgrading/upgrading.html +2 -4
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuit.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittermination.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittype.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/circuits/provider.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/circuits/providernetwork.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloud.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudaccount.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetwork.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetworkprefixassignment.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudresourcetype.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservice.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservicenetworkassignment.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/cable.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleport.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleporttemplate.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverport.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverporttemplate.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/controller.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/controllermanageddevicegroup.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/device.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebay.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebaytemplate.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicefamily.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/deviceredundancygroup.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicetype.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontport.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontporttemplate.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interface.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfaceredundancygroup.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfacetemplate.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/inventoryitem.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/location.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/locationtype.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/manufacturer.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/module.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebay.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebaytemplate.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/moduletype.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/platform.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerfeed.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlet.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlettemplate.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerpanel.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerport.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerporttemplate.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rack.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackgroup.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackreservation.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearport.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearporttemplate.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareimagefile.html +4 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareversion.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualchassis.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualdevicecontext.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontext.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontextschema.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/extras/contact.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/extras/team.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/ipam/ipaddress.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/ipam/namespace.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/ipam/prefix.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/ipam/rir.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/ipam/routetarget.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/ipam/service.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlan.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlangroup.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vrf.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/overview/introduction.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenant.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenantgroup.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/cluster.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustergroup.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustertype.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/virtualmachine.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/vminterface.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/wireless/index.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/wireless/radioprofile.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/wireless/supporteddatarate.html +0 -2
- nautobot/project-static/docs/user-guide/core-data-model/wireless/wirelessnetwork.html +0 -2
- nautobot/project-static/docs/user-guide/feature-guides/contacts-and-teams.html +11 -13
- nautobot/project-static/docs/user-guide/feature-guides/custom-fields.html +0 -2
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-devices.html +8 -10
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-location-types-and-locations.html +1 -2
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/index.html +0 -2
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/interfaces.html +40 -27
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/ipam.html +4 -6
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/platforms.html +1 -3
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/search-bar.html +77 -7
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/tenants.html +1 -3
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/vlans-and-vlan-groups.html +0 -3
- nautobot/project-static/docs/user-guide/feature-guides/git-data-source.html +1 -3
- nautobot/project-static/docs/user-guide/feature-guides/graphql.html +0 -2
- nautobot/project-static/docs/user-guide/feature-guides/ip-address-merge-tool.html +0 -2
- nautobot/project-static/docs/user-guide/feature-guides/relationships.html +0 -2
- nautobot/project-static/docs/user-guide/feature-guides/software-image-files-and-versions.html +0 -2
- nautobot/project-static/docs/user-guide/feature-guides/wireless-networks-and-controllers.html +0 -2
- nautobot/project-static/docs/user-guide/index.html +89 -4
- nautobot/project-static/docs/user-guide/platform-functionality/change-logging.html +0 -2
- nautobot/project-static/docs/user-guide/platform-functionality/computedfield.html +0 -2
- nautobot/project-static/docs/user-guide/platform-functionality/customfield.html +0 -2
- nautobot/project-static/docs/user-guide/platform-functionality/customlink.html +0 -2
- nautobot/project-static/docs/user-guide/platform-functionality/dynamicgroup.html +0 -2
- nautobot/project-static/docs/user-guide/platform-functionality/events.html +0 -2
- nautobot/project-static/docs/user-guide/platform-functionality/exporttemplate.html +0 -2
- nautobot/project-static/docs/user-guide/platform-functionality/externalintegration.html +0 -2
- nautobot/project-static/docs/user-guide/platform-functionality/gitrepository.html +0 -2
- nautobot/project-static/docs/user-guide/platform-functionality/graphql.html +0 -2
- nautobot/project-static/docs/user-guide/platform-functionality/graphqlquery.html +0 -2
- nautobot/project-static/docs/user-guide/platform-functionality/imageattachment.html +0 -2
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/index.html +0 -2
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/job-scheduling-and-approvals.html +0 -2
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobbutton.html +0 -2
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobhook.html +0 -2
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobqueue.html +0 -2
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/kubernetes-job-support.html +0 -2
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/models.html +0 -2
- nautobot/project-static/docs/user-guide/platform-functionality/napalm.html +0 -2
- nautobot/project-static/docs/user-guide/platform-functionality/note.html +0 -2
- nautobot/project-static/docs/user-guide/platform-functionality/objectmetadata.html +0 -2
- nautobot/project-static/docs/user-guide/platform-functionality/relationship.html +0 -2
- nautobot/project-static/docs/user-guide/platform-functionality/rendering-jinja-templates.html +0 -2
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/authentication.html +0 -2
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/filtering.html +0 -2
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/overview.html +0 -2
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/ui-related-endpoints.html +0 -2
- nautobot/project-static/docs/user-guide/platform-functionality/role.html +0 -2
- nautobot/project-static/docs/user-guide/platform-functionality/savedview.html +0 -2
- nautobot/project-static/docs/user-guide/platform-functionality/secret.html +0 -2
- nautobot/project-static/docs/user-guide/platform-functionality/staticgroupassociation.html +0 -2
- nautobot/project-static/docs/user-guide/platform-functionality/status.html +0 -2
- nautobot/project-static/docs/user-guide/platform-functionality/tag.html +0 -2
- nautobot/project-static/docs/user-guide/platform-functionality/template-filters.html +0 -2
- nautobot/project-static/docs/user-guide/platform-functionality/users/objectpermission.html +0 -2
- nautobot/project-static/docs/user-guide/platform-functionality/users/token.html +0 -2
- nautobot/project-static/docs/user-guide/platform-functionality/webhook.html +207 -124
- nautobot/project-static/js/forms.js +88 -37
- nautobot/project-static/js/homepage_layout.js +12 -3
- nautobot/virtualization/forms.py +20 -0
- nautobot/virtualization/templates/virtualization/clustergroup.html +1 -39
- nautobot/virtualization/templates/virtualization/clustertype.html +1 -0
- nautobot/virtualization/tests/test_api.py +14 -3
- nautobot/virtualization/tests/test_views.py +10 -2
- nautobot/virtualization/urls.py +10 -93
- nautobot/virtualization/views.py +33 -72
- {nautobot-2.4.5.dist-info → nautobot-2.4.7.dist-info}/METADATA +6 -5
- {nautobot-2.4.5.dist-info → nautobot-2.4.7.dist-info}/RECORD +407 -402
- {nautobot-2.4.5.dist-info → nautobot-2.4.7.dist-info}/WHEEL +1 -1
- nautobot/core/tests/performance_baselines.yml +0 -8900
- nautobot/dcim/templates/dcim/modulebay_create.html +0 -39
- nautobot/ipam/tests/test_migrations.py +0 -462
- /nautobot/ipam/templates/ipam/{namespace_ipaddresses.html → namespace_ip_addresses.html} +0 -0
- {nautobot-2.4.5.dist-info → nautobot-2.4.7.dist-info}/LICENSE.txt +0 -0
- {nautobot-2.4.5.dist-info → nautobot-2.4.7.dist-info}/NOTICE +0 -0
- {nautobot-2.4.5.dist-info → nautobot-2.4.7.dist-info}/entry_points.txt +0 -0
|
@@ -665,6 +665,93 @@
|
|
|
665
665
|
</label>
|
|
666
666
|
<ul class="md-nav__list" data-md-component="toc" data-md-scrollfix>
|
|
667
667
|
|
|
668
|
+
<li class="md-nav__item">
|
|
669
|
+
<a href="#deployment-options" class="md-nav__link">
|
|
670
|
+
<span class="md-ellipsis">
|
|
671
|
+
Deployment Options
|
|
672
|
+
</span>
|
|
673
|
+
</a>
|
|
674
|
+
|
|
675
|
+
<nav class="md-nav" aria-label="Deployment Options">
|
|
676
|
+
<ul class="md-nav__list">
|
|
677
|
+
|
|
678
|
+
<li class="md-nav__item">
|
|
679
|
+
<a href="#bare-metal-virtual-machine-pros" class="md-nav__link">
|
|
680
|
+
<span class="md-ellipsis">
|
|
681
|
+
Bare metal / Virtual Machine Pros
|
|
682
|
+
</span>
|
|
683
|
+
</a>
|
|
684
|
+
|
|
685
|
+
</li>
|
|
686
|
+
|
|
687
|
+
<li class="md-nav__item">
|
|
688
|
+
<a href="#bare-metal-virtual-machine-cons" class="md-nav__link">
|
|
689
|
+
<span class="md-ellipsis">
|
|
690
|
+
Bare metal / Virtual Machine Cons
|
|
691
|
+
</span>
|
|
692
|
+
</a>
|
|
693
|
+
|
|
694
|
+
</li>
|
|
695
|
+
|
|
696
|
+
<li class="md-nav__item">
|
|
697
|
+
<a href="#docker-compose-pros" class="md-nav__link">
|
|
698
|
+
<span class="md-ellipsis">
|
|
699
|
+
Docker Compose Pros
|
|
700
|
+
</span>
|
|
701
|
+
</a>
|
|
702
|
+
|
|
703
|
+
</li>
|
|
704
|
+
|
|
705
|
+
<li class="md-nav__item">
|
|
706
|
+
<a href="#docker-compose-cons" class="md-nav__link">
|
|
707
|
+
<span class="md-ellipsis">
|
|
708
|
+
Docker Compose Cons
|
|
709
|
+
</span>
|
|
710
|
+
</a>
|
|
711
|
+
|
|
712
|
+
</li>
|
|
713
|
+
|
|
714
|
+
<li class="md-nav__item">
|
|
715
|
+
<a href="#helm-charts-pros" class="md-nav__link">
|
|
716
|
+
<span class="md-ellipsis">
|
|
717
|
+
Helm Charts Pros
|
|
718
|
+
</span>
|
|
719
|
+
</a>
|
|
720
|
+
|
|
721
|
+
</li>
|
|
722
|
+
|
|
723
|
+
<li class="md-nav__item">
|
|
724
|
+
<a href="#helm-charts-cons" class="md-nav__link">
|
|
725
|
+
<span class="md-ellipsis">
|
|
726
|
+
Helm Charts Cons
|
|
727
|
+
</span>
|
|
728
|
+
</a>
|
|
729
|
+
|
|
730
|
+
</li>
|
|
731
|
+
|
|
732
|
+
<li class="md-nav__item">
|
|
733
|
+
<a href="#nautobot-cloud-pros" class="md-nav__link">
|
|
734
|
+
<span class="md-ellipsis">
|
|
735
|
+
Nautobot Cloud Pros
|
|
736
|
+
</span>
|
|
737
|
+
</a>
|
|
738
|
+
|
|
739
|
+
</li>
|
|
740
|
+
|
|
741
|
+
<li class="md-nav__item">
|
|
742
|
+
<a href="#nautobot-cloud-cons" class="md-nav__link">
|
|
743
|
+
<span class="md-ellipsis">
|
|
744
|
+
Nautobot Cloud Cons
|
|
745
|
+
</span>
|
|
746
|
+
</a>
|
|
747
|
+
|
|
748
|
+
</li>
|
|
749
|
+
|
|
750
|
+
</ul>
|
|
751
|
+
</nav>
|
|
752
|
+
|
|
753
|
+
</li>
|
|
754
|
+
|
|
668
755
|
<li class="md-nav__item">
|
|
669
756
|
<a href="#about-dependencies" class="md-nav__link">
|
|
670
757
|
<span class="md-ellipsis">
|
|
@@ -9216,6 +9303,93 @@
|
|
|
9216
9303
|
</label>
|
|
9217
9304
|
<ul class="md-nav__list" data-md-component="toc" data-md-scrollfix>
|
|
9218
9305
|
|
|
9306
|
+
<li class="md-nav__item">
|
|
9307
|
+
<a href="#deployment-options" class="md-nav__link">
|
|
9308
|
+
<span class="md-ellipsis">
|
|
9309
|
+
Deployment Options
|
|
9310
|
+
</span>
|
|
9311
|
+
</a>
|
|
9312
|
+
|
|
9313
|
+
<nav class="md-nav" aria-label="Deployment Options">
|
|
9314
|
+
<ul class="md-nav__list">
|
|
9315
|
+
|
|
9316
|
+
<li class="md-nav__item">
|
|
9317
|
+
<a href="#bare-metal-virtual-machine-pros" class="md-nav__link">
|
|
9318
|
+
<span class="md-ellipsis">
|
|
9319
|
+
Bare metal / Virtual Machine Pros
|
|
9320
|
+
</span>
|
|
9321
|
+
</a>
|
|
9322
|
+
|
|
9323
|
+
</li>
|
|
9324
|
+
|
|
9325
|
+
<li class="md-nav__item">
|
|
9326
|
+
<a href="#bare-metal-virtual-machine-cons" class="md-nav__link">
|
|
9327
|
+
<span class="md-ellipsis">
|
|
9328
|
+
Bare metal / Virtual Machine Cons
|
|
9329
|
+
</span>
|
|
9330
|
+
</a>
|
|
9331
|
+
|
|
9332
|
+
</li>
|
|
9333
|
+
|
|
9334
|
+
<li class="md-nav__item">
|
|
9335
|
+
<a href="#docker-compose-pros" class="md-nav__link">
|
|
9336
|
+
<span class="md-ellipsis">
|
|
9337
|
+
Docker Compose Pros
|
|
9338
|
+
</span>
|
|
9339
|
+
</a>
|
|
9340
|
+
|
|
9341
|
+
</li>
|
|
9342
|
+
|
|
9343
|
+
<li class="md-nav__item">
|
|
9344
|
+
<a href="#docker-compose-cons" class="md-nav__link">
|
|
9345
|
+
<span class="md-ellipsis">
|
|
9346
|
+
Docker Compose Cons
|
|
9347
|
+
</span>
|
|
9348
|
+
</a>
|
|
9349
|
+
|
|
9350
|
+
</li>
|
|
9351
|
+
|
|
9352
|
+
<li class="md-nav__item">
|
|
9353
|
+
<a href="#helm-charts-pros" class="md-nav__link">
|
|
9354
|
+
<span class="md-ellipsis">
|
|
9355
|
+
Helm Charts Pros
|
|
9356
|
+
</span>
|
|
9357
|
+
</a>
|
|
9358
|
+
|
|
9359
|
+
</li>
|
|
9360
|
+
|
|
9361
|
+
<li class="md-nav__item">
|
|
9362
|
+
<a href="#helm-charts-cons" class="md-nav__link">
|
|
9363
|
+
<span class="md-ellipsis">
|
|
9364
|
+
Helm Charts Cons
|
|
9365
|
+
</span>
|
|
9366
|
+
</a>
|
|
9367
|
+
|
|
9368
|
+
</li>
|
|
9369
|
+
|
|
9370
|
+
<li class="md-nav__item">
|
|
9371
|
+
<a href="#nautobot-cloud-pros" class="md-nav__link">
|
|
9372
|
+
<span class="md-ellipsis">
|
|
9373
|
+
Nautobot Cloud Pros
|
|
9374
|
+
</span>
|
|
9375
|
+
</a>
|
|
9376
|
+
|
|
9377
|
+
</li>
|
|
9378
|
+
|
|
9379
|
+
<li class="md-nav__item">
|
|
9380
|
+
<a href="#nautobot-cloud-cons" class="md-nav__link">
|
|
9381
|
+
<span class="md-ellipsis">
|
|
9382
|
+
Nautobot Cloud Cons
|
|
9383
|
+
</span>
|
|
9384
|
+
</a>
|
|
9385
|
+
|
|
9386
|
+
</li>
|
|
9387
|
+
|
|
9388
|
+
</ul>
|
|
9389
|
+
</nav>
|
|
9390
|
+
|
|
9391
|
+
</li>
|
|
9392
|
+
|
|
9219
9393
|
<li class="md-nav__item">
|
|
9220
9394
|
<a href="#about-dependencies" class="md-nav__link">
|
|
9221
9395
|
<span class="md-ellipsis">
|
|
@@ -9310,26 +9484,93 @@
|
|
|
9310
9484
|
|
|
9311
9485
|
|
|
9312
9486
|
<h1 id="installation">Installation<a class="headerlink" href="#installation" title="Permanent link">¶</a></h1>
|
|
9313
|
-
<p>
|
|
9487
|
+
<p>Whether you are getting started for the first time, looking to build a local lab or ready to build a production environment, there are a variety of options to find the right fit for your needs with using Nautobot.</p>
|
|
9488
|
+
<div class="admonition tip">
|
|
9489
|
+
<p class="admonition-title">Checking out Nautobot for the first time? Not ready to install anything yet?</p>
|
|
9490
|
+
<p>You can explore the <a href="https://networktocode.com/nautobot/sandbox-environments/">Nautobot Always-On Sandbox Environments</a>. There is sample data already prepopulated, no installation required, and several Nautobot Apps are pre-installed, with sample data.</p>
|
|
9491
|
+
</div>
|
|
9492
|
+
<h2 id="deployment-options">Deployment Options<a class="headerlink" href="#deployment-options" title="Permanent link">¶</a></h2>
|
|
9493
|
+
<div class="tabbed-set tabbed-alternate" data-tabs="1:4"><input checked="checked" id="__tabbed_1_1" name="__tabbed_1" type="radio" /><input id="__tabbed_1_2" name="__tabbed_1" type="radio" /><input id="__tabbed_1_3" name="__tabbed_1" type="radio" /><input id="__tabbed_1_4" name="__tabbed_1" type="radio" /><div class="tabbed-labels"><label for="__tabbed_1_1">Bare metal / Virtual Machine</label><label for="__tabbed_1_2">Docker Compose</label><label for="__tabbed_1_3">Kubernetes Helm Charts</label><label for="__tabbed_1_4">Nautobot Cloud</label></div>
|
|
9494
|
+
<div class="tabbed-content">
|
|
9495
|
+
<div class="tabbed-block">
|
|
9496
|
+
<p>You can <a href="install_system.html">install Nautobot</a> onto a <a href="https://www.redhat.com/en/technologies/linux-platforms/enterprise-linux">RHEL (Red Hat Enterprise Linux)</a> or <a href="https://ubuntu.com/">Ubuntu</a> virtual machine. </p>
|
|
9497
|
+
<p>Nautobot was designed to be a cross-platform application that can run on nearly any system that is able to run the required dependencies. <em>Only the operating system platforms listed below are officially supported at this time</em>.</p>
|
|
9314
9498
|
<ul>
|
|
9315
|
-
<li
|
|
9316
|
-
<li>
|
|
9317
|
-
<li><a href="https://docs.nautobot.com/projects/helm-charts/en/stable/">Install Nautobot via Helm Charts</a> for Kubernetes</li>
|
|
9499
|
+
<li>Red Hat flavors of Linux including Fedora 8.2+ and Red Hat Enterprise Linux (RHEL) 8.2+ are supported.</li>
|
|
9500
|
+
<li>Debian/Ubuntu flavors of Linux including Ubuntu 20.04+ and Debian 11+ are supported.</li>
|
|
9318
9501
|
</ul>
|
|
9319
|
-
</
|
|
9320
|
-
<
|
|
9502
|
+
<p>Nautobot <em>should</em> work on any POSIX-compliant system including practically any flavor of Linux, BSD, or even macOS, but those are not <em>officially</em> supported at this time.</p>
|
|
9503
|
+
<h3 id="bare-metal-virtual-machine-pros">Bare metal / Virtual Machine Pros<a class="headerlink" href="#bare-metal-virtual-machine-pros" title="Permanent link">¶</a></h3>
|
|
9504
|
+
<ul>
|
|
9505
|
+
<li>Familiar deployment option for many administrators</li>
|
|
9506
|
+
<li>Performance is generally higher without the overhead of virtualization</li>
|
|
9507
|
+
<li>Full control over hardware and software allows for greater customization and security practices</li>
|
|
9508
|
+
</ul>
|
|
9509
|
+
<h3 id="bare-metal-virtual-machine-cons">Bare metal / Virtual Machine Cons<a class="headerlink" href="#bare-metal-virtual-machine-cons" title="Permanent link">¶</a></h3>
|
|
9510
|
+
<ul>
|
|
9511
|
+
<li>Maintenance and high availability is more difficult than Docker or Cloud options</li>
|
|
9512
|
+
<li>Preparing server for production grade security and scaling requires additional effort </li>
|
|
9321
9513
|
</ul>
|
|
9514
|
+
</div>
|
|
9515
|
+
<div class="tabbed-block">
|
|
9516
|
+
<p>Nautobot can be deployed via Docker using <a href="../guides/docker.html">Nautobot Docker images</a> that are available either from:</p>
|
|
9517
|
+
<ul>
|
|
9518
|
+
<li><a href="https://hub.docker.com/r/networktocode/nautobot">Docker Hub</a></li>
|
|
9519
|
+
<li><a href="https://github.com/nautobot/nautobot/pkgs/container/nautobot">GitHub Container Registry</a> </li>
|
|
9520
|
+
</ul>
|
|
9521
|
+
<p>For local testing and lab work you can use the Nautobot <a href="https://github.com/nautobot/nautobot-docker-compose">Docker Compose</a> project which leverages the container images above. </p>
|
|
9322
9522
|
<p>For more information about the Docker tags, Docker configurations, or using container images for your own development environment, see <a href="../guides/docker.html">Nautobot in Docker</a>.</p>
|
|
9323
|
-
<
|
|
9324
|
-
<summary>Supported Platforms</summary>
|
|
9325
|
-
<p>Nautobot was designed to be a cross-platform application that can run on nearly any system that is able to run the required dependencies. <em>Only the operating system platforms listed below are officially supported at this time</em>.</p>
|
|
9523
|
+
<h3 id="docker-compose-pros">Docker Compose Pros<a class="headerlink" href="#docker-compose-pros" title="Permanent link">¶</a></h3>
|
|
9326
9524
|
<ul>
|
|
9327
|
-
<li>
|
|
9328
|
-
<li>
|
|
9525
|
+
<li>Quick and simple setup for single-node lab environments and testing</li>
|
|
9526
|
+
<li>Lightweight alternative for those who don't need full Kubernetes orchestration</li>
|
|
9329
9527
|
</ul>
|
|
9330
|
-
<
|
|
9331
|
-
|
|
9332
|
-
<
|
|
9528
|
+
<h3 id="docker-compose-cons">Docker Compose Cons<a class="headerlink" href="#docker-compose-cons" title="Permanent link">¶</a></h3>
|
|
9529
|
+
<ul>
|
|
9530
|
+
<li>Docker compose on its own is missing advanced features like automated rollbacks, self-healing applications, and load balancing </li>
|
|
9531
|
+
<li>Limited scaling if on single host </li>
|
|
9532
|
+
</ul>
|
|
9533
|
+
</div>
|
|
9534
|
+
<div class="tabbed-block">
|
|
9535
|
+
<p>You can <a href="https://docs.nautobot.com/projects/helm-charts/en/stable/">install Nautobot via Helm Charts</a> for Kubernetes documentation. </p>
|
|
9536
|
+
<p>If you are looking for an example of what that process looks like in a development environment using <code>minikube</code>, you can check out the three part blog series covering deploying Nautobot to Kubernetes:</p>
|
|
9537
|
+
<ul>
|
|
9538
|
+
<li><a href="https://networktocode.com/blog/deploying-nautobot-to-kubernetes-01/">Part 1</a></li>
|
|
9539
|
+
<li><a href="https://networktocode.com/blog/deploying-nautobot-to-kubernetes-02/">Part 2</a></li>
|
|
9540
|
+
<li><a href="https://networktocode.com/blog/deploying-nautobot-to-kubernetes-03/">Part 3</a></li>
|
|
9541
|
+
</ul>
|
|
9542
|
+
<h3 id="helm-charts-pros">Helm Charts Pros<a class="headerlink" href="#helm-charts-pros" title="Permanent link">¶</a></h3>
|
|
9543
|
+
<ul>
|
|
9544
|
+
<li>Helm charts serves as a package manager for Kubernetes, streamlining the deployment of complex applications within Kubernetes clusters</li>
|
|
9545
|
+
<li>Using Kubernetes features, you can manage large-scale deployments efficiently and ensure high-availability for production grade systems</li>
|
|
9546
|
+
</ul>
|
|
9547
|
+
<h3 id="helm-charts-cons">Helm Charts Cons<a class="headerlink" href="#helm-charts-cons" title="Permanent link">¶</a></h3>
|
|
9548
|
+
<ul>
|
|
9549
|
+
<li>Requires knowledge of Kubernetes and has a steeper learning curve for setting up</li>
|
|
9550
|
+
<li>Kubernetes clusters can use a lot of resources and monitoring effort</li>
|
|
9551
|
+
</ul>
|
|
9552
|
+
</div>
|
|
9553
|
+
<div class="tabbed-block">
|
|
9554
|
+
<p><a href="https://networktocode.com/nautobot/nautobot-cloud/">Nautobot Cloud</a> is a commercial Software as a Service (SaaS) offering from Network to Code. It is the <em><strong>easy</strong></em> button for Nautobot. It offers self-service and turnkey deployment for Nautobot removing the need for infrastructure setup and maintenance including one-click upgrades, clones, backups and restores, and a marketplace to streamline Nautobot App installations.</p>
|
|
9555
|
+
<p><!-- pyml disable-num-lines 5 no-inline-html -->
|
|
9556
|
+
<div class="grid cards example-images" markdown>
|
|
9557
|
+
<a class="glightbox" href="../../../media/user-guide/administration/getting-started/nautobot-cloud.png" data-type="image" data-width="auto" data-height="auto" data-desc-position="bottom"><img alt="Nautobot Cloud Example" class="on-glb" src="../../../media/user-guide/administration/getting-started/nautobot-cloud.png" /></a>
|
|
9558
|
+
</div></p>
|
|
9559
|
+
<h3 id="nautobot-cloud-pros">Nautobot Cloud Pros<a class="headerlink" href="#nautobot-cloud-pros" title="Permanent link">¶</a></h3>
|
|
9560
|
+
<ul>
|
|
9561
|
+
<li>One-click Nautobot deployments <strong>and</strong> upgrades</li>
|
|
9562
|
+
<li>Enterprise grade dashboards to see trends of Nautobot data across all Nautobot instances</li>
|
|
9563
|
+
<li>Click to install apps from Nautobot Cloud Marketplace</li>
|
|
9564
|
+
<li>Cloud-based database snapshots</li>
|
|
9565
|
+
<li>One-click deployments of Ansible AWX too</li>
|
|
9566
|
+
</ul>
|
|
9567
|
+
<h3 id="nautobot-cloud-cons">Nautobot Cloud Cons<a class="headerlink" href="#nautobot-cloud-cons" title="Permanent link">¶</a></h3>
|
|
9568
|
+
<ul>
|
|
9569
|
+
<li>You’ll have to find something else to do with all that freed-up time now that you’re not maintaining on-prem applications and infrastructure.</li>
|
|
9570
|
+
</ul>
|
|
9571
|
+
</div>
|
|
9572
|
+
</div>
|
|
9573
|
+
</div>
|
|
9333
9574
|
<h2 id="about-dependencies">About Dependencies<a class="headerlink" href="#about-dependencies" title="Permanent link">¶</a></h2>
|
|
9334
9575
|
<p>This section describes the system dependencies required for Nautobot. They can be all installed on a single system, or distributed across your environment. That will be up to you. Our install instructions assume a single system install, and that is good for most use cases. More advanced configurations are also possible, but are not covered here.</p>
|
|
9335
9576
|
<h3 id="mandatory-dependencies">Mandatory dependencies<a class="headerlink" href="#mandatory-dependencies" title="Permanent link">¶</a></h3>
|
|
@@ -9346,7 +9587,7 @@
|
|
|
9346
9587
|
<tr>
|
|
9347
9588
|
<td>Python</td>
|
|
9348
9589
|
<td>Application</td>
|
|
9349
|
-
<td>3.9</td>
|
|
9590
|
+
<td>3.9.2</td>
|
|
9350
9591
|
</tr>
|
|
9351
9592
|
<tr>
|
|
9352
9593
|
<td>PostgreSQL</td>
|
|
@@ -9391,7 +9632,7 @@
|
|
|
9391
9632
|
<p class="admonition-title">Only one database</p>
|
|
9392
9633
|
<p>Either PostgreSQL or MySQL must be selected, but not both.</p>
|
|
9393
9634
|
</div>
|
|
9394
|
-
<div class="tabbed-set tabbed-alternate" data-tabs="
|
|
9635
|
+
<div class="tabbed-set tabbed-alternate" data-tabs="2:2"><input checked="checked" id="__tabbed_2_1" name="__tabbed_2" type="radio" /><input id="__tabbed_2_2" name="__tabbed_2" type="radio" /><div class="tabbed-labels"><label for="__tabbed_2_1">MySQL</label><label for="__tabbed_2_2">PostgreSQL</label></div>
|
|
9395
9636
|
<div class="tabbed-content">
|
|
9396
9637
|
<div class="tabbed-block">
|
|
9397
9638
|
<p><a href="https://mysql.com">MySQL</a> is an open-source relational database management system that’s relatively easy to set up and manage, fast, reliable, and well-understood.</p>
|
|
@@ -9569,8 +9810,6 @@
|
|
|
9569
9810
|
|
|
9570
9811
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9571
9812
|
|
|
9572
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9573
|
-
|
|
9574
9813
|
|
|
9575
9814
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9576
9815
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9870,8 +9870,6 @@ is done with the following commands.</p>
|
|
|
9870
9870
|
|
|
9871
9871
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9872
9872
|
|
|
9873
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9874
|
-
|
|
9875
9873
|
|
|
9876
9874
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9877
9875
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9965,8 +9965,6 @@ development instance:</p>
|
|
|
9965
9965
|
|
|
9966
9966
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9967
9967
|
|
|
9968
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9969
|
-
|
|
9970
9968
|
|
|
9971
9969
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9972
9970
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9996,8 +9996,6 @@ Fields</a>, and <a href="../../platform-functionality/gitrepository.html">Git Re
|
|
|
9996
9996
|
|
|
9997
9997
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9998
9998
|
|
|
9999
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
10000
|
-
|
|
10001
9999
|
|
|
10002
10000
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
10003
10001
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -10239,8 +10239,6 @@
|
|
|
10239
10239
|
|
|
10240
10240
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
10241
10241
|
|
|
10242
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
10243
|
-
|
|
10244
10242
|
|
|
10245
10243
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
10246
10244
|
document$.subscribe(() => { lightbox.reload() });
|
nautobot/project-static/docs/user-guide/administration/migration/migrating-from-postgresql.html
CHANGED
|
@@ -9533,8 +9533,6 @@
|
|
|
9533
9533
|
|
|
9534
9534
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9535
9535
|
|
|
9536
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9537
|
-
|
|
9538
9536
|
|
|
9539
9537
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9540
9538
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9411,8 +9411,6 @@
|
|
|
9411
9411
|
|
|
9412
9412
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9413
9413
|
|
|
9414
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9415
|
-
|
|
9416
9414
|
|
|
9417
9415
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9418
9416
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9835,8 +9835,6 @@
|
|
|
9835
9835
|
|
|
9836
9836
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9837
9837
|
|
|
9838
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9839
|
-
|
|
9840
9838
|
|
|
9841
9839
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9842
9840
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -10344,7 +10344,7 @@ Hide HTTP request headers.</p>
|
|
|
10344
10344
|
<p>Example output:</p>
|
|
10345
10345
|
<div class="highlight"><pre><span></span><code><a id="__codelineno-53-1" name="__codelineno-53-1" href="#__codelineno-53-1"></a>Listening on port http://localhost:9000. Stop with CONTROL-C.
|
|
10346
10346
|
</code></pre></div>
|
|
10347
|
-
<p>Please see the guide on <a href="../../platform-functionality/webhook.html#troubleshooting">Troubleshooting Webhooks</a> for more information.</p>
|
|
10347
|
+
<p>Please see the guide on <a href="../../platform-functionality/webhook.html#troubleshooting-webhooks">Troubleshooting Webhooks</a> for more information.</p>
|
|
10348
10348
|
|
|
10349
10349
|
|
|
10350
10350
|
|
|
@@ -10493,8 +10493,6 @@ Hide HTTP request headers.</p>
|
|
|
10493
10493
|
|
|
10494
10494
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
10495
10495
|
|
|
10496
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
10497
|
-
|
|
10498
10496
|
|
|
10499
10497
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
10500
10498
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9569,8 +9569,6 @@
|
|
|
9569
9569
|
|
|
9570
9570
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9571
9571
|
|
|
9572
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9573
|
-
|
|
9574
9572
|
|
|
9575
9573
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9576
9574
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9349,8 +9349,6 @@
|
|
|
9349
9349
|
|
|
9350
9350
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9351
9351
|
|
|
9352
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9353
|
-
|
|
9354
9352
|
|
|
9355
9353
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9356
9354
|
document$.subscribe(() => { lightbox.reload() });
|
nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.html
CHANGED
|
@@ -9478,8 +9478,6 @@
|
|
|
9478
9478
|
|
|
9479
9479
|
<script src="../../../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9480
9480
|
|
|
9481
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9482
|
-
|
|
9483
9481
|
|
|
9484
9482
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9485
9483
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9537,8 +9537,6 @@
|
|
|
9537
9537
|
|
|
9538
9538
|
<script src="../../../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9539
9539
|
|
|
9540
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9541
|
-
|
|
9542
9540
|
|
|
9543
9541
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9544
9542
|
document$.subscribe(() => { lightbox.reload() });
|
nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/for-developers.html
CHANGED
|
@@ -10286,8 +10286,6 @@
|
|
|
10286
10286
|
|
|
10287
10287
|
<script src="../../../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
10288
10288
|
|
|
10289
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
10290
|
-
|
|
10291
10289
|
|
|
10292
10290
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
10293
10291
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9301,8 +9301,6 @@
|
|
|
9301
9301
|
|
|
9302
9302
|
<script src="../../../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9303
9303
|
|
|
9304
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9305
|
-
|
|
9306
9304
|
|
|
9307
9305
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9308
9306
|
document$.subscribe(() => { lightbox.reload() });
|
nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/whats-changed.html
CHANGED
|
@@ -9807,8 +9807,6 @@
|
|
|
9807
9807
|
|
|
9808
9808
|
<script src="../../../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9809
9809
|
|
|
9810
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9811
|
-
|
|
9812
9810
|
|
|
9813
9811
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9814
9812
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9547,8 +9547,6 @@
|
|
|
9547
9547
|
|
|
9548
9548
|
<script src="../../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9549
9549
|
|
|
9550
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9551
|
-
|
|
9552
9550
|
|
|
9553
9551
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9554
9552
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -14623,8 +14623,6 @@ class ExampleJob(Job):
|
|
|
14623
14623
|
|
|
14624
14624
|
<script src="../../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
14625
14625
|
|
|
14626
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
14627
|
-
|
|
14628
14626
|
|
|
14629
14627
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
14630
14628
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9455,7 +9455,7 @@ release notes under the release in which the change went into effect.</p>
|
|
|
9455
9455
|
</code></pre></div>
|
|
9456
9456
|
<p>Please see the <a href="https://dev.mysql.com/blog-archive/mysql-8-0-collations-migrating-from-older-collations/">official MySQL documentation on migrating collation encoding settings</a> for more information on troubleshooting any issues you may encounter.</p>
|
|
9457
9457
|
<h2 id="update-prerequisites-to-required-versions">Update Prerequisites to Required Versions<a class="headerlink" href="#update-prerequisites-to-required-versions" title="Permanent link">¶</a></h2>
|
|
9458
|
-
<p>Nautobot v2.4.
|
|
9458
|
+
<p>Nautobot v2.4.6 and later requires the following:</p>
|
|
9459
9459
|
<table>
|
|
9460
9460
|
<thead>
|
|
9461
9461
|
<tr>
|
|
@@ -9466,7 +9466,7 @@ release notes under the release in which the change went into effect.</p>
|
|
|
9466
9466
|
<tbody>
|
|
9467
9467
|
<tr>
|
|
9468
9468
|
<td>Python</td>
|
|
9469
|
-
<td>3.9</td>
|
|
9469
|
+
<td>3.9.2</td>
|
|
9470
9470
|
</tr>
|
|
9471
9471
|
<tr>
|
|
9472
9472
|
<td>PostgreSQL</td>
|
|
@@ -9689,8 +9689,6 @@ release notes under the release in which the change went into effect.</p>
|
|
|
9689
9689
|
|
|
9690
9690
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9691
9691
|
|
|
9692
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9693
|
-
|
|
9694
9692
|
|
|
9695
9693
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9696
9694
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9286,8 +9286,6 @@
|
|
|
9286
9286
|
|
|
9287
9287
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9288
9288
|
|
|
9289
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9290
|
-
|
|
9291
9289
|
|
|
9292
9290
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9293
9291
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9277,8 +9277,6 @@
|
|
|
9277
9277
|
|
|
9278
9278
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9279
9279
|
|
|
9280
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9281
|
-
|
|
9282
9280
|
|
|
9283
9281
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9284
9282
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9277,8 +9277,6 @@
|
|
|
9277
9277
|
|
|
9278
9278
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9279
9279
|
|
|
9280
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9281
|
-
|
|
9282
9280
|
|
|
9283
9281
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9284
9282
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9276,8 +9276,6 @@
|
|
|
9276
9276
|
|
|
9277
9277
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9278
9278
|
|
|
9279
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9280
|
-
|
|
9281
9279
|
|
|
9282
9280
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9283
9281
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9272,8 +9272,6 @@
|
|
|
9272
9272
|
|
|
9273
9273
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9274
9274
|
|
|
9275
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9276
|
-
|
|
9277
9275
|
|
|
9278
9276
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9279
9277
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9427,8 +9427,6 @@ erDiagram
|
|
|
9427
9427
|
|
|
9428
9428
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9429
9429
|
|
|
9430
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9431
|
-
|
|
9432
9430
|
|
|
9433
9431
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9434
9432
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9271,8 +9271,6 @@
|
|
|
9271
9271
|
|
|
9272
9272
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9273
9273
|
|
|
9274
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9275
|
-
|
|
9276
9274
|
|
|
9277
9275
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9278
9276
|
document$.subscribe(() => { lightbox.reload() });
|
|
@@ -9272,8 +9272,6 @@
|
|
|
9272
9272
|
|
|
9273
9273
|
<script src="../../../assets/javascripts/bundle.60a45f97.min.js"></script>
|
|
9274
9274
|
|
|
9275
|
-
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
9276
|
-
|
|
9277
9275
|
|
|
9278
9276
|
<script id="init-glightbox">const lightbox = GLightbox({"touchNavigation": true, "loop": false, "zoomable": true, "draggable": true, "openEffect": "zoom", "closeEffect": "zoom", "slideEffect": "slide"});
|
|
9279
9277
|
document$.subscribe(() => { lightbox.reload() });
|