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.

Files changed (410) hide show
  1. nautobot/apps/forms.py +2 -0
  2. nautobot/circuits/templates/circuits/providernetwork.html +1 -1
  3. nautobot/circuits/templates/circuits/providernetwork_retrieve.html +2 -55
  4. nautobot/circuits/views.py +20 -23
  5. nautobot/cloud/templates/cloud/cloudaccount_retrieve.html +2 -40
  6. nautobot/cloud/views.py +12 -0
  7. nautobot/core/api/mixins.py +10 -0
  8. nautobot/core/api/urls.py +2 -2
  9. nautobot/core/api/views.py +39 -1
  10. nautobot/core/celery/encoders.py +2 -2
  11. nautobot/core/forms/__init__.py +2 -0
  12. nautobot/core/forms/fields.py +23 -7
  13. nautobot/core/forms/utils.py +1 -0
  14. nautobot/core/forms/widgets.py +18 -0
  15. nautobot/core/jobs/bulk_actions.py +1 -1
  16. nautobot/core/management/commands/generate_test_data.py +1 -1
  17. nautobot/core/models/name_color_content_types.py +9 -0
  18. nautobot/core/models/validators.py +7 -0
  19. nautobot/core/settings.py +0 -14
  20. nautobot/core/settings.yaml +0 -28
  21. nautobot/core/tables.py +6 -1
  22. nautobot/core/templates/generic/object_retrieve.html +1 -1
  23. nautobot/core/templates/widgets/sluginput.html +5 -1
  24. nautobot/core/templatetags/helpers.py +15 -1
  25. nautobot/core/testing/api.py +18 -0
  26. nautobot/core/testing/integration.py +6 -2
  27. nautobot/core/tests/nautobot_config.py +0 -2
  28. nautobot/core/tests/runner.py +17 -140
  29. nautobot/core/tests/test_api.py +4 -4
  30. nautobot/core/tests/test_authentication.py +83 -4
  31. nautobot/core/tests/test_forms.py +11 -8
  32. nautobot/core/tests/test_graphql.py +9 -0
  33. nautobot/core/tests/test_jobs.py +7 -0
  34. nautobot/core/ui/object_detail.py +47 -3
  35. nautobot/core/utils/lookup.py +2 -2
  36. nautobot/dcim/factory.py +2 -0
  37. nautobot/dcim/filters/__init__.py +5 -0
  38. nautobot/dcim/forms.py +27 -1
  39. nautobot/dcim/migrations/0068_alter_softwareimagefile_download_url.py +19 -0
  40. nautobot/dcim/migrations/0069_softwareimagefile_external_integration.py +25 -0
  41. nautobot/dcim/models/devices.py +9 -2
  42. nautobot/dcim/models/locations.py +9 -0
  43. nautobot/dcim/tables/devices.py +1 -0
  44. nautobot/dcim/templates/dcim/device_list.html +1 -1
  45. nautobot/dcim/templates/dcim/devicetype.html +1 -1
  46. nautobot/dcim/templates/dcim/manufacturer.html +1 -63
  47. nautobot/dcim/templates/dcim/module_list.html +1 -1
  48. nautobot/dcim/templates/dcim/moduletype_retrieve.html +1 -1
  49. nautobot/dcim/templates/dcim/softwareimagefile_retrieve.html +4 -0
  50. nautobot/dcim/tests/integration/test_module_bay_position.py +125 -0
  51. nautobot/dcim/tests/test_api.py +74 -31
  52. nautobot/dcim/tests/test_filters.py +2 -0
  53. nautobot/dcim/tests/test_models.py +78 -0
  54. nautobot/dcim/tests/test_views.py +7 -1
  55. nautobot/dcim/urls.py +1 -45
  56. nautobot/dcim/views.py +35 -66
  57. nautobot/extras/choices.py +4 -0
  58. nautobot/extras/filters/__init__.py +6 -0
  59. nautobot/extras/forms/forms.py +83 -11
  60. nautobot/extras/models/customfields.py +10 -9
  61. nautobot/extras/plugins/marketplace_manifest.yml +18 -0
  62. nautobot/extras/signals.py +43 -4
  63. nautobot/extras/tables.py +4 -5
  64. nautobot/extras/tasks.py +4 -2
  65. nautobot/extras/templates/extras/contact_retrieve.html +1 -58
  66. nautobot/extras/templates/extras/exporttemplate.html +1 -53
  67. nautobot/extras/templates/extras/inc/panel_changelog.html +1 -1
  68. nautobot/extras/templates/extras/inc/panel_jobhistory.html +1 -1
  69. nautobot/extras/templates/extras/status.html +1 -37
  70. nautobot/extras/templates/extras/team_retrieve.html +1 -58
  71. nautobot/extras/tests/integration/test_notes.py +1 -1
  72. nautobot/extras/tests/test_api.py +22 -7
  73. nautobot/extras/tests/test_changelog.py +4 -4
  74. nautobot/extras/tests/test_customfields.py +27 -0
  75. nautobot/extras/tests/test_plugins.py +19 -13
  76. nautobot/extras/tests/test_relationships.py +9 -0
  77. nautobot/extras/tests/test_tags.py +2 -2
  78. nautobot/extras/tests/test_views.py +37 -6
  79. nautobot/extras/urls.py +3 -100
  80. nautobot/extras/views.py +111 -133
  81. nautobot/ipam/tables.py +7 -2
  82. nautobot/ipam/templates/ipam/namespace_retrieve.html +0 -41
  83. nautobot/ipam/templates/ipam/service.html +2 -46
  84. nautobot/ipam/templates/ipam/service_edit.html +1 -17
  85. nautobot/ipam/templates/ipam/service_retrieve.html +7 -0
  86. nautobot/ipam/tests/migration/__init__.py +0 -0
  87. nautobot/ipam/tests/migration/test_migrations.py +510 -0
  88. nautobot/ipam/tests/test_api.py +66 -36
  89. nautobot/ipam/tests/test_filters.py +0 -10
  90. nautobot/ipam/tests/test_views.py +44 -2
  91. nautobot/ipam/urls.py +2 -47
  92. nautobot/ipam/utils/migrations.py +185 -152
  93. nautobot/ipam/utils/testing.py +177 -0
  94. nautobot/ipam/views.py +95 -157
  95. nautobot/project-static/css/base.css +5 -0
  96. nautobot/project-static/docs/404.html +0 -2
  97. nautobot/project-static/docs/apps/index.html +0 -2
  98. nautobot/project-static/docs/apps/nautobot-apps.html +0 -2
  99. nautobot/project-static/docs/code-reference/nautobot/apps/__init__.html +0 -2
  100. nautobot/project-static/docs/code-reference/nautobot/apps/admin.html +0 -2
  101. nautobot/project-static/docs/code-reference/nautobot/apps/api.html +0 -2
  102. nautobot/project-static/docs/code-reference/nautobot/apps/change_logging.html +0 -2
  103. nautobot/project-static/docs/code-reference/nautobot/apps/choices.html +0 -2
  104. nautobot/project-static/docs/code-reference/nautobot/apps/config.html +0 -2
  105. nautobot/project-static/docs/code-reference/nautobot/apps/constants.html +0 -2
  106. nautobot/project-static/docs/code-reference/nautobot/apps/datasources.html +0 -2
  107. nautobot/project-static/docs/code-reference/nautobot/apps/events.html +0 -2
  108. nautobot/project-static/docs/code-reference/nautobot/apps/exceptions.html +0 -2
  109. nautobot/project-static/docs/code-reference/nautobot/apps/factory.html +0 -2
  110. nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +0 -2
  111. nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +62 -2
  112. nautobot/project-static/docs/code-reference/nautobot/apps/graphql.html +0 -2
  113. nautobot/project-static/docs/code-reference/nautobot/apps/jobs.html +0 -2
  114. nautobot/project-static/docs/code-reference/nautobot/apps/models.html +47 -2
  115. nautobot/project-static/docs/code-reference/nautobot/apps/querysets.html +0 -2
  116. nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html +0 -2
  117. nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +18 -2
  118. nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +0 -2
  119. nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +70 -5
  120. nautobot/project-static/docs/code-reference/nautobot/apps/urls.html +0 -2
  121. nautobot/project-static/docs/code-reference/nautobot/apps/utils.html +0 -2
  122. nautobot/project-static/docs/code-reference/nautobot/apps/views.html +0 -2
  123. nautobot/project-static/docs/development/apps/api/configuration-view.html +0 -2
  124. nautobot/project-static/docs/development/apps/api/database-backend-config.html +0 -2
  125. nautobot/project-static/docs/development/apps/api/models/django-admin.html +0 -2
  126. nautobot/project-static/docs/development/apps/api/models/global-search.html +0 -2
  127. nautobot/project-static/docs/development/apps/api/models/graphql.html +0 -2
  128. nautobot/project-static/docs/development/apps/api/models/index.html +0 -2
  129. nautobot/project-static/docs/development/apps/api/nautobot-app-config.html +0 -2
  130. nautobot/project-static/docs/development/apps/api/platform-features/custom-validators.html +0 -2
  131. nautobot/project-static/docs/development/apps/api/platform-features/filter-extensions.html +0 -2
  132. nautobot/project-static/docs/development/apps/api/platform-features/git-repository-content.html +0 -2
  133. nautobot/project-static/docs/development/apps/api/platform-features/index.html +0 -2
  134. nautobot/project-static/docs/development/apps/api/platform-features/jinja2-filters.html +0 -2
  135. nautobot/project-static/docs/development/apps/api/platform-features/jobs.html +0 -2
  136. nautobot/project-static/docs/development/apps/api/platform-features/populating-extensibility-features.html +0 -2
  137. nautobot/project-static/docs/development/apps/api/platform-features/secrets-providers.html +0 -2
  138. nautobot/project-static/docs/development/apps/api/platform-features/table-extensions.html +0 -2
  139. nautobot/project-static/docs/development/apps/api/platform-features/uniquely-identify-objects.html +0 -2
  140. nautobot/project-static/docs/development/apps/api/prometheus.html +0 -2
  141. nautobot/project-static/docs/development/apps/api/setup.html +0 -2
  142. nautobot/project-static/docs/development/apps/api/testing.html +0 -89
  143. nautobot/project-static/docs/development/apps/api/ui-extensions/banners.html +0 -2
  144. nautobot/project-static/docs/development/apps/api/ui-extensions/home-page.html +0 -2
  145. nautobot/project-static/docs/development/apps/api/ui-extensions/index.html +0 -2
  146. nautobot/project-static/docs/development/apps/api/ui-extensions/navigation.html +0 -2
  147. nautobot/project-static/docs/development/apps/api/ui-extensions/object-views.html +0 -2
  148. nautobot/project-static/docs/development/apps/api/views/base-template.html +0 -2
  149. nautobot/project-static/docs/development/apps/api/views/core-view-overrides.html +0 -2
  150. nautobot/project-static/docs/development/apps/api/views/django-generic-views.html +0 -2
  151. nautobot/project-static/docs/development/apps/api/views/help-documentation.html +0 -2
  152. nautobot/project-static/docs/development/apps/api/views/index.html +0 -2
  153. nautobot/project-static/docs/development/apps/api/views/nautobot-generic-views.html +0 -2
  154. nautobot/project-static/docs/development/apps/api/views/nautobotuiviewset.html +0 -2
  155. nautobot/project-static/docs/development/apps/api/views/nautobotuiviewsetrouter.html +0 -2
  156. nautobot/project-static/docs/development/apps/api/views/notes.html +0 -2
  157. nautobot/project-static/docs/development/apps/api/views/rest-api.html +0 -2
  158. nautobot/project-static/docs/development/apps/api/views/urls.html +0 -2
  159. nautobot/project-static/docs/development/apps/index.html +0 -2
  160. nautobot/project-static/docs/development/apps/migration/code-updates.html +0 -2
  161. nautobot/project-static/docs/development/apps/migration/dependency-updates.html +1 -3
  162. nautobot/project-static/docs/development/apps/migration/from-v1.html +0 -2
  163. nautobot/project-static/docs/development/apps/migration/model-updates/dcim.html +0 -2
  164. nautobot/project-static/docs/development/apps/migration/model-updates/extras.html +0 -2
  165. nautobot/project-static/docs/development/apps/migration/model-updates/global.html +0 -2
  166. nautobot/project-static/docs/development/apps/migration/model-updates/ipam.html +0 -2
  167. nautobot/project-static/docs/development/apps/migration/ui-component-framework/best-practices.html +0 -2
  168. nautobot/project-static/docs/development/apps/migration/ui-component-framework/custom-content.html +0 -2
  169. nautobot/project-static/docs/development/apps/migration/ui-component-framework/index.html +0 -2
  170. nautobot/project-static/docs/development/apps/migration/ui-component-framework/migration-steps.html +0 -2
  171. nautobot/project-static/docs/development/apps/porting-from-netbox.html +0 -2
  172. nautobot/project-static/docs/development/core/application-registry.html +0 -2
  173. nautobot/project-static/docs/development/core/best-practices.html +3 -5
  174. nautobot/project-static/docs/development/core/bootstrap-ui.html +0 -2
  175. nautobot/project-static/docs/development/core/caching.html +0 -2
  176. nautobot/project-static/docs/development/core/controllers.html +0 -2
  177. nautobot/project-static/docs/development/core/docker-compose-advanced-use-cases.html +0 -2
  178. nautobot/project-static/docs/development/core/generic-views.html +0 -2
  179. nautobot/project-static/docs/development/core/getting-started.html +78 -109
  180. nautobot/project-static/docs/development/core/homepage.html +0 -2
  181. nautobot/project-static/docs/development/core/index.html +0 -2
  182. nautobot/project-static/docs/development/core/minikube-dev-environment-for-k8s-jobs.html +0 -2
  183. nautobot/project-static/docs/development/core/model-checklist.html +0 -2
  184. nautobot/project-static/docs/development/core/model-features.html +0 -2
  185. nautobot/project-static/docs/development/core/natural-keys.html +0 -2
  186. nautobot/project-static/docs/development/core/navigation-menu.html +0 -2
  187. nautobot/project-static/docs/development/core/release-checklist.html +1 -3
  188. nautobot/project-static/docs/development/core/role-internals.html +0 -2
  189. nautobot/project-static/docs/development/core/settings.html +0 -2
  190. nautobot/project-static/docs/development/core/style-guide.html +1 -3
  191. nautobot/project-static/docs/development/core/templates.html +0 -2
  192. nautobot/project-static/docs/development/core/testing.html +24 -200
  193. nautobot/project-static/docs/development/core/ui-component-framework.html +0 -2
  194. nautobot/project-static/docs/development/core/user-preferences.html +0 -2
  195. nautobot/project-static/docs/development/index.html +0 -2
  196. nautobot/project-static/docs/development/jobs/index.html +0 -2
  197. nautobot/project-static/docs/development/jobs/migration/from-v1.html +0 -2
  198. nautobot/project-static/docs/index.html +0 -2
  199. nautobot/project-static/docs/media/user-guide/administration/getting-started/nautobot-cloud.png +0 -0
  200. nautobot/project-static/docs/objects.inv +0 -0
  201. nautobot/project-static/docs/overview/application_stack.html +1 -3
  202. nautobot/project-static/docs/overview/design_philosophy.html +0 -2
  203. nautobot/project-static/docs/release-notes/index.html +0 -2
  204. nautobot/project-static/docs/release-notes/version-1.0.html +0 -2
  205. nautobot/project-static/docs/release-notes/version-1.1.html +0 -2
  206. nautobot/project-static/docs/release-notes/version-1.2.html +0 -2
  207. nautobot/project-static/docs/release-notes/version-1.3.html +0 -2
  208. nautobot/project-static/docs/release-notes/version-1.4.html +0 -2
  209. nautobot/project-static/docs/release-notes/version-1.5.html +0 -2
  210. nautobot/project-static/docs/release-notes/version-1.6.html +0 -2
  211. nautobot/project-static/docs/release-notes/version-2.0.html +0 -2
  212. nautobot/project-static/docs/release-notes/version-2.1.html +0 -2
  213. nautobot/project-static/docs/release-notes/version-2.2.html +0 -2
  214. nautobot/project-static/docs/release-notes/version-2.3.html +0 -2
  215. nautobot/project-static/docs/release-notes/version-2.4.html +364 -3
  216. nautobot/project-static/docs/search/search_index.json +1 -1
  217. nautobot/project-static/docs/sitemap.xml +290 -290
  218. nautobot/project-static/docs/sitemap.xml.gz +0 -0
  219. nautobot/project-static/docs/user-guide/administration/configuration/authentication/ldap.html +0 -2
  220. nautobot/project-static/docs/user-guide/administration/configuration/authentication/remote.html +0 -2
  221. nautobot/project-static/docs/user-guide/administration/configuration/authentication/sso.html +0 -2
  222. nautobot/project-static/docs/user-guide/administration/configuration/index.html +0 -2
  223. nautobot/project-static/docs/user-guide/administration/configuration/redis.html +0 -2
  224. nautobot/project-static/docs/user-guide/administration/configuration/settings.html +2 -50
  225. nautobot/project-static/docs/user-guide/administration/configuration/time-zones.html +0 -2
  226. nautobot/project-static/docs/user-guide/administration/guides/celery-queues.html +0 -2
  227. nautobot/project-static/docs/user-guide/administration/guides/docker.html +0 -2
  228. nautobot/project-static/docs/user-guide/administration/guides/health-checks.html +0 -2
  229. nautobot/project-static/docs/user-guide/administration/guides/permissions.html +71 -2
  230. nautobot/project-static/docs/user-guide/administration/guides/prometheus-metrics.html +0 -2
  231. nautobot/project-static/docs/user-guide/administration/guides/replicating-nautobot.html +0 -2
  232. nautobot/project-static/docs/user-guide/administration/guides/request-profiling.html +0 -2
  233. nautobot/project-static/docs/user-guide/administration/guides/s3-django-storage.html +0 -2
  234. nautobot/project-static/docs/user-guide/administration/guides/selinux-troubleshooting.html +0 -2
  235. nautobot/project-static/docs/user-guide/administration/installation/app-install.html +0 -2
  236. nautobot/project-static/docs/user-guide/administration/installation/external-authentication.html +0 -2
  237. nautobot/project-static/docs/user-guide/administration/installation/http-server.html +3 -3
  238. nautobot/project-static/docs/user-guide/administration/installation/index.html +257 -18
  239. nautobot/project-static/docs/user-guide/administration/installation/install_system.html +0 -2
  240. nautobot/project-static/docs/user-guide/administration/installation/nautobot.html +0 -2
  241. nautobot/project-static/docs/user-guide/administration/installation/services.html +0 -2
  242. nautobot/project-static/docs/user-guide/administration/migration/migrating-from-netbox.html +0 -2
  243. nautobot/project-static/docs/user-guide/administration/migration/migrating-from-postgresql.html +0 -2
  244. nautobot/project-static/docs/user-guide/administration/security/index.html +0 -2
  245. nautobot/project-static/docs/user-guide/administration/security/notices.html +0 -2
  246. nautobot/project-static/docs/user-guide/administration/tools/nautobot-server.html +1 -3
  247. nautobot/project-static/docs/user-guide/administration/tools/nautobot-shell.html +0 -2
  248. nautobot/project-static/docs/user-guide/administration/upgrading/database-backup.html +0 -2
  249. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.html +0 -2
  250. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/before-you-upgrade.html +0 -2
  251. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/for-developers.html +0 -2
  252. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/index.html +0 -2
  253. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/whats-changed.html +0 -2
  254. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/region-and-site-data-migration-guide.html +0 -2
  255. nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html +0 -2
  256. nautobot/project-static/docs/user-guide/administration/upgrading/upgrading.html +2 -4
  257. nautobot/project-static/docs/user-guide/core-data-model/circuits/circuit.html +0 -2
  258. nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittermination.html +0 -2
  259. nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittype.html +0 -2
  260. nautobot/project-static/docs/user-guide/core-data-model/circuits/provider.html +0 -2
  261. nautobot/project-static/docs/user-guide/core-data-model/circuits/providernetwork.html +0 -2
  262. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloud.html +0 -2
  263. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudaccount.html +0 -2
  264. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetwork.html +0 -2
  265. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetworkprefixassignment.html +0 -2
  266. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudresourcetype.html +0 -2
  267. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservice.html +0 -2
  268. nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservicenetworkassignment.html +0 -2
  269. nautobot/project-static/docs/user-guide/core-data-model/dcim/cable.html +0 -2
  270. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleport.html +0 -2
  271. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleporttemplate.html +0 -2
  272. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverport.html +0 -2
  273. nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverporttemplate.html +0 -2
  274. nautobot/project-static/docs/user-guide/core-data-model/dcim/controller.html +0 -2
  275. nautobot/project-static/docs/user-guide/core-data-model/dcim/controllermanageddevicegroup.html +0 -2
  276. nautobot/project-static/docs/user-guide/core-data-model/dcim/device.html +0 -2
  277. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebay.html +0 -2
  278. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebaytemplate.html +0 -2
  279. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicefamily.html +0 -2
  280. nautobot/project-static/docs/user-guide/core-data-model/dcim/deviceredundancygroup.html +0 -2
  281. nautobot/project-static/docs/user-guide/core-data-model/dcim/devicetype.html +0 -2
  282. nautobot/project-static/docs/user-guide/core-data-model/dcim/frontport.html +0 -2
  283. nautobot/project-static/docs/user-guide/core-data-model/dcim/frontporttemplate.html +0 -2
  284. nautobot/project-static/docs/user-guide/core-data-model/dcim/interface.html +0 -2
  285. nautobot/project-static/docs/user-guide/core-data-model/dcim/interfaceredundancygroup.html +0 -2
  286. nautobot/project-static/docs/user-guide/core-data-model/dcim/interfacetemplate.html +0 -2
  287. nautobot/project-static/docs/user-guide/core-data-model/dcim/inventoryitem.html +0 -2
  288. nautobot/project-static/docs/user-guide/core-data-model/dcim/location.html +0 -2
  289. nautobot/project-static/docs/user-guide/core-data-model/dcim/locationtype.html +0 -2
  290. nautobot/project-static/docs/user-guide/core-data-model/dcim/manufacturer.html +0 -2
  291. nautobot/project-static/docs/user-guide/core-data-model/dcim/module.html +0 -2
  292. nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebay.html +0 -2
  293. nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebaytemplate.html +0 -2
  294. nautobot/project-static/docs/user-guide/core-data-model/dcim/moduletype.html +0 -2
  295. nautobot/project-static/docs/user-guide/core-data-model/dcim/platform.html +0 -2
  296. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerfeed.html +0 -2
  297. nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlet.html +0 -2
  298. nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlettemplate.html +0 -2
  299. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerpanel.html +0 -2
  300. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerport.html +0 -2
  301. nautobot/project-static/docs/user-guide/core-data-model/dcim/powerporttemplate.html +0 -2
  302. nautobot/project-static/docs/user-guide/core-data-model/dcim/rack.html +0 -2
  303. nautobot/project-static/docs/user-guide/core-data-model/dcim/rackgroup.html +0 -2
  304. nautobot/project-static/docs/user-guide/core-data-model/dcim/rackreservation.html +0 -2
  305. nautobot/project-static/docs/user-guide/core-data-model/dcim/rearport.html +0 -2
  306. nautobot/project-static/docs/user-guide/core-data-model/dcim/rearporttemplate.html +0 -2
  307. nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareimagefile.html +4 -2
  308. nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareversion.html +0 -2
  309. nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualchassis.html +0 -2
  310. nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualdevicecontext.html +0 -2
  311. nautobot/project-static/docs/user-guide/core-data-model/extras/configcontext.html +0 -2
  312. nautobot/project-static/docs/user-guide/core-data-model/extras/configcontextschema.html +0 -2
  313. nautobot/project-static/docs/user-guide/core-data-model/extras/contact.html +0 -2
  314. nautobot/project-static/docs/user-guide/core-data-model/extras/team.html +0 -2
  315. nautobot/project-static/docs/user-guide/core-data-model/ipam/ipaddress.html +0 -2
  316. nautobot/project-static/docs/user-guide/core-data-model/ipam/namespace.html +0 -2
  317. nautobot/project-static/docs/user-guide/core-data-model/ipam/prefix.html +0 -2
  318. nautobot/project-static/docs/user-guide/core-data-model/ipam/rir.html +0 -2
  319. nautobot/project-static/docs/user-guide/core-data-model/ipam/routetarget.html +0 -2
  320. nautobot/project-static/docs/user-guide/core-data-model/ipam/service.html +0 -2
  321. nautobot/project-static/docs/user-guide/core-data-model/ipam/vlan.html +0 -2
  322. nautobot/project-static/docs/user-guide/core-data-model/ipam/vlangroup.html +0 -2
  323. nautobot/project-static/docs/user-guide/core-data-model/ipam/vrf.html +0 -2
  324. nautobot/project-static/docs/user-guide/core-data-model/overview/introduction.html +0 -2
  325. nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenant.html +0 -2
  326. nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenantgroup.html +0 -2
  327. nautobot/project-static/docs/user-guide/core-data-model/virtualization/cluster.html +0 -2
  328. nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustergroup.html +0 -2
  329. nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustertype.html +0 -2
  330. nautobot/project-static/docs/user-guide/core-data-model/virtualization/virtualmachine.html +0 -2
  331. nautobot/project-static/docs/user-guide/core-data-model/virtualization/vminterface.html +0 -2
  332. nautobot/project-static/docs/user-guide/core-data-model/wireless/index.html +0 -2
  333. nautobot/project-static/docs/user-guide/core-data-model/wireless/radioprofile.html +0 -2
  334. nautobot/project-static/docs/user-guide/core-data-model/wireless/supporteddatarate.html +0 -2
  335. nautobot/project-static/docs/user-guide/core-data-model/wireless/wirelessnetwork.html +0 -2
  336. nautobot/project-static/docs/user-guide/feature-guides/contacts-and-teams.html +11 -13
  337. nautobot/project-static/docs/user-guide/feature-guides/custom-fields.html +0 -2
  338. nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-devices.html +8 -10
  339. nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-location-types-and-locations.html +1 -2
  340. nautobot/project-static/docs/user-guide/feature-guides/getting-started/index.html +0 -2
  341. nautobot/project-static/docs/user-guide/feature-guides/getting-started/interfaces.html +40 -27
  342. nautobot/project-static/docs/user-guide/feature-guides/getting-started/ipam.html +4 -6
  343. nautobot/project-static/docs/user-guide/feature-guides/getting-started/platforms.html +1 -3
  344. nautobot/project-static/docs/user-guide/feature-guides/getting-started/search-bar.html +77 -7
  345. nautobot/project-static/docs/user-guide/feature-guides/getting-started/tenants.html +1 -3
  346. nautobot/project-static/docs/user-guide/feature-guides/getting-started/vlans-and-vlan-groups.html +0 -3
  347. nautobot/project-static/docs/user-guide/feature-guides/git-data-source.html +1 -3
  348. nautobot/project-static/docs/user-guide/feature-guides/graphql.html +0 -2
  349. nautobot/project-static/docs/user-guide/feature-guides/ip-address-merge-tool.html +0 -2
  350. nautobot/project-static/docs/user-guide/feature-guides/relationships.html +0 -2
  351. nautobot/project-static/docs/user-guide/feature-guides/software-image-files-and-versions.html +0 -2
  352. nautobot/project-static/docs/user-guide/feature-guides/wireless-networks-and-controllers.html +0 -2
  353. nautobot/project-static/docs/user-guide/index.html +89 -4
  354. nautobot/project-static/docs/user-guide/platform-functionality/change-logging.html +0 -2
  355. nautobot/project-static/docs/user-guide/platform-functionality/computedfield.html +0 -2
  356. nautobot/project-static/docs/user-guide/platform-functionality/customfield.html +0 -2
  357. nautobot/project-static/docs/user-guide/platform-functionality/customlink.html +0 -2
  358. nautobot/project-static/docs/user-guide/platform-functionality/dynamicgroup.html +0 -2
  359. nautobot/project-static/docs/user-guide/platform-functionality/events.html +0 -2
  360. nautobot/project-static/docs/user-guide/platform-functionality/exporttemplate.html +0 -2
  361. nautobot/project-static/docs/user-guide/platform-functionality/externalintegration.html +0 -2
  362. nautobot/project-static/docs/user-guide/platform-functionality/gitrepository.html +0 -2
  363. nautobot/project-static/docs/user-guide/platform-functionality/graphql.html +0 -2
  364. nautobot/project-static/docs/user-guide/platform-functionality/graphqlquery.html +0 -2
  365. nautobot/project-static/docs/user-guide/platform-functionality/imageattachment.html +0 -2
  366. nautobot/project-static/docs/user-guide/platform-functionality/jobs/index.html +0 -2
  367. nautobot/project-static/docs/user-guide/platform-functionality/jobs/job-scheduling-and-approvals.html +0 -2
  368. nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobbutton.html +0 -2
  369. nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobhook.html +0 -2
  370. nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobqueue.html +0 -2
  371. nautobot/project-static/docs/user-guide/platform-functionality/jobs/kubernetes-job-support.html +0 -2
  372. nautobot/project-static/docs/user-guide/platform-functionality/jobs/models.html +0 -2
  373. nautobot/project-static/docs/user-guide/platform-functionality/napalm.html +0 -2
  374. nautobot/project-static/docs/user-guide/platform-functionality/note.html +0 -2
  375. nautobot/project-static/docs/user-guide/platform-functionality/objectmetadata.html +0 -2
  376. nautobot/project-static/docs/user-guide/platform-functionality/relationship.html +0 -2
  377. nautobot/project-static/docs/user-guide/platform-functionality/rendering-jinja-templates.html +0 -2
  378. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/authentication.html +0 -2
  379. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/filtering.html +0 -2
  380. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/overview.html +0 -2
  381. nautobot/project-static/docs/user-guide/platform-functionality/rest-api/ui-related-endpoints.html +0 -2
  382. nautobot/project-static/docs/user-guide/platform-functionality/role.html +0 -2
  383. nautobot/project-static/docs/user-guide/platform-functionality/savedview.html +0 -2
  384. nautobot/project-static/docs/user-guide/platform-functionality/secret.html +0 -2
  385. nautobot/project-static/docs/user-guide/platform-functionality/staticgroupassociation.html +0 -2
  386. nautobot/project-static/docs/user-guide/platform-functionality/status.html +0 -2
  387. nautobot/project-static/docs/user-guide/platform-functionality/tag.html +0 -2
  388. nautobot/project-static/docs/user-guide/platform-functionality/template-filters.html +0 -2
  389. nautobot/project-static/docs/user-guide/platform-functionality/users/objectpermission.html +0 -2
  390. nautobot/project-static/docs/user-guide/platform-functionality/users/token.html +0 -2
  391. nautobot/project-static/docs/user-guide/platform-functionality/webhook.html +207 -124
  392. nautobot/project-static/js/forms.js +88 -37
  393. nautobot/project-static/js/homepage_layout.js +12 -3
  394. nautobot/virtualization/forms.py +20 -0
  395. nautobot/virtualization/templates/virtualization/clustergroup.html +1 -39
  396. nautobot/virtualization/templates/virtualization/clustertype.html +1 -0
  397. nautobot/virtualization/tests/test_api.py +14 -3
  398. nautobot/virtualization/tests/test_views.py +10 -2
  399. nautobot/virtualization/urls.py +10 -93
  400. nautobot/virtualization/views.py +33 -72
  401. {nautobot-2.4.5.dist-info → nautobot-2.4.7.dist-info}/METADATA +6 -5
  402. {nautobot-2.4.5.dist-info → nautobot-2.4.7.dist-info}/RECORD +407 -402
  403. {nautobot-2.4.5.dist-info → nautobot-2.4.7.dist-info}/WHEEL +1 -1
  404. nautobot/core/tests/performance_baselines.yml +0 -8900
  405. nautobot/dcim/templates/dcim/modulebay_create.html +0 -39
  406. nautobot/ipam/tests/test_migrations.py +0 -462
  407. /nautobot/ipam/templates/ipam/{namespace_ipaddresses.html → namespace_ip_addresses.html} +0 -0
  408. {nautobot-2.4.5.dist-info → nautobot-2.4.7.dist-info}/LICENSE.txt +0 -0
  409. {nautobot-2.4.5.dist-info → nautobot-2.4.7.dist-info}/NOTICE +0 -0
  410. {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">&para;</a></h1>
9313
- <p>Nautobot can be deployed via Docker (Compose or Kubernetes) or directly onto a supported Linux system:</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">&para;</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><a href="../guides/docker.html">Nautobot Docker images</a> are available via <a href="https://hub.docker.com/r/networktocode/nautobot">Docker Hub</a> &amp; <a href="https://github.com/nautobot/nautobot/pkgs/container/nautobot">GitHub Container Registry</a> for use within a containerized environment<ul>
9316
- <li>Install Nautobot via <a href="https://github.com/nautobot/nautobot-docker-compose">Docker Compose</a></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
- </li>
9320
- <li><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.</li>
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">&para;</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">&para;</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
- <details class="info">
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">&para;</a></h3>
9326
9524
  <ul>
9327
- <li>Red Hat flavors of Linux including CentOS 8.2+ and Red Hat Enterprise Linux (RHEL) 8.2+ are supported.</li>
9328
- <li>Debian/Ubuntu flavors of Linux including Ubuntu 20.04+ and Debian 11+ are supported.</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
- <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>
9331
- </details>
9332
- <p>To begin installing Nautobot, click the link to your preferred deployment approach from the list above.</p>
9528
+ <h3 id="docker-compose-cons">Docker Compose Cons<a class="headerlink" href="#docker-compose-cons" title="Permanent link">&para;</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">&para;</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">&para;</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">&para;</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">&para;</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">&para;</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">&para;</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="1:2"><input checked="checked" id="__tabbed_1_1" name="__tabbed_1" type="radio" /><input id="__tabbed_1_2" name="__tabbed_1" type="radio" /><div class="tabbed-labels"><label for="__tabbed_1_1">MySQL</label><label for="__tabbed_1_2">PostgreSQL</label></div>
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() });
@@ -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() });
@@ -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() });
@@ -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() });
@@ -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">&para;</a></h2>
9458
- <p>Nautobot v2.4.0 and later requires the following:</p>
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() });