diff --git a/website/api/controllers/download-sitemap.js b/website/api/controllers/download-sitemap.js index 297c071114..591dd32110 100644 --- a/website/api/controllers/download-sitemap.js +++ b/website/api/controllers/download-sitemap.js @@ -66,7 +66,7 @@ module.exports = { '/orchestration', '/device-management', '/software-management', - '/fleet-gitops', + '/infrastructure-as-code', // Other stuff: // > Note: /handbook overview page is already included amongst the markdown pages // > Note: Same for /docs diff --git a/website/api/controllers/view-fleet-gitops.js b/website/api/controllers/view-infrastructure-as-code.js similarity index 81% rename from website/api/controllers/view-fleet-gitops.js rename to website/api/controllers/view-infrastructure-as-code.js index 07d18d3b65..7a0afa4e5a 100644 --- a/website/api/controllers/view-fleet-gitops.js +++ b/website/api/controllers/view-infrastructure-as-code.js @@ -1,16 +1,16 @@ module.exports = { - friendlyName: 'View fleet gitops', + friendlyName: 'View infrastructure-as-code', - description: 'Display "Fleet gitops" page.', + description: 'Display "Fleet infrastructure-as-code" page.', exits: { success: { - viewTemplatePath: 'pages/fleet-gitops' + viewTemplatePath: 'pages/infrastructure-as-code' }, badConfig: { diff --git a/website/assets/js/pages/fleet-gitops.page.js b/website/assets/js/pages/infrastructure-as-code.page.js similarity index 100% rename from website/assets/js/pages/fleet-gitops.page.js rename to website/assets/js/pages/infrastructure-as-code.page.js diff --git a/website/assets/styles/importer.less b/website/assets/styles/importer.less index 9af4d1e932..7f88c36f25 100644 --- a/website/assets/styles/importer.less +++ b/website/assets/styles/importer.less @@ -101,7 +101,7 @@ @import 'pages/landing-pages/gitops-workshop.less'; @import 'pages/landing-pages/basic-comparison.less'; @import 'pages/landing-pages/deployment.less'; -@import 'pages/fleet-gitops.less'; +@import 'pages/infrastructure-as-code.less'; @import 'pages/admin/reset-trial.less'; @import 'pages/landing-pages/linux-management.less'; @import 'pages/articles/basic-whitepaper.less'; diff --git a/website/assets/styles/pages/fleet-gitops.less b/website/assets/styles/pages/infrastructure-as-code.less similarity index 100% rename from website/assets/styles/pages/fleet-gitops.less rename to website/assets/styles/pages/infrastructure-as-code.less diff --git a/website/config/policies.js b/website/config/policies.js index abee1178c8..c80aa1f1af 100644 --- a/website/config/policies.js +++ b/website/config/policies.js @@ -86,6 +86,6 @@ module.exports.policies = { 'deliver-application-submission': true, 'landing-pages/*': true, 'deliver-gitops-workshop-request': true, - 'view-fleet-gitops': true, + 'view-infrastructure-as-code': true, 'deliver-whitepaper-download-request': true, }; diff --git a/website/config/routes.js b/website/config/routes.js index 14a053c361..6ca476c0cd 100644 --- a/website/config/routes.js +++ b/website/config/routes.js @@ -577,8 +577,8 @@ module.exports.routes = { action: 'landing-pages/view-basic-comparison' }, - 'GET /fleet-gitops': { - action: 'view-fleet-gitops', + 'GET /infrastructure-as-code': { + action: 'view-infrastructure-as-code', locals: { pageTitleForMeta: 'Infrastructure as code', pageDescriptionForMeta: 'See every change, undo any error, repeat every success. Fleet\'s infrastructure as code approach lets you manage every endpoint setting in version-controlled YAML.', @@ -1046,6 +1046,7 @@ module.exports.routes = { 'GET /apps': '/software-catalog',// This is mostly for mikermcneil who keeps trying to type the old url. 'GET /register': '/login#register', 'GET /handbook/finance/security': '/handbook/it/security', + 'GET /fleet-gitops': '/infrastructure-as-code', // ╔╦╗╦╔═╗╔═╗ ╦═╗╔═╗╔╦╗╦╦═╗╔═╗╔═╗╔╦╗╔═╗ ┬ ╔╦╗╔═╗╦ ╦╔╗╔╦ ╔═╗╔═╗╔╦╗╔═╗ // ║║║║╚═╗║ ╠╦╝║╣ ║║║╠╦╝║╣ ║ ║ ╚═╗ ┌┼─ ║║║ ║║║║║║║║ ║ ║╠═╣ ║║╚═╗ // ╩ ╩╩╚═╝╚═╝ ╩╚═╚═╝═╩╝╩╩╚═╚═╝╚═╝ ╩ ╚═╝ └┘ ═╩╝╚═╝╚╩╝╝╚╝╩═╝╚═╝╩ ╩═╩╝╚═╝ diff --git a/website/views/layouts/layout.ejs b/website/views/layouts/layout.ejs index 42162f8f83..1f86c42901 100644 --- a/website/views/layouts/layout.ejs +++ b/website/views/layouts/layout.ejs @@ -230,7 +230,7 @@ - +
GitOps @@ -437,7 +437,7 @@
- +
GitOps @@ -888,11 +888,11 @@ - + diff --git a/website/views/pages/fleet-gitops.ejs b/website/views/pages/infrastructure-as-code.ejs similarity index 100% rename from website/views/pages/fleet-gitops.ejs rename to website/views/pages/infrastructure-as-code.ejs