Skip to content

Commit bc7e553

Browse files
Merge pull request #800 from spadgett/remove-openshift-web-console-ns
Remove openshift-web-console namespace
2 parents 0a334be + b3857b7 commit bc7e553

File tree

4 files changed

+0
-81
lines changed

4 files changed

+0
-81
lines changed

data/data/manifests/bootkube/03-openshift-web-console-namespace.yaml

Lines changed: 0 additions & 8 deletions
This file was deleted.

pkg/asset/manifests/operators.go

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,6 @@ func (m *Manifests) Dependencies() []asset.Asset {
7474
&bootkube.KubeSystemConfigmapRootCA{},
7575
&bootkube.KubeSystemSecretEtcdClient{},
7676

77-
&bootkube.OpenshiftWebConsoleNamespace{},
7877
&bootkube.OpenshiftMachineConfigOperator{},
7978
&bootkube.OpenshiftClusterAPINamespace{},
8079
&bootkube.OpenshiftServiceCertSignerNamespace{},
@@ -169,7 +168,6 @@ func (m *Manifests) generateBootKubeManifests(dependencies asset.Parents) []*ass
169168
kubeSystemConfigmapRootCA := &bootkube.KubeSystemConfigmapRootCA{}
170169
kubeSystemSecretEtcdClient := &bootkube.KubeSystemSecretEtcdClient{}
171170

172-
openshiftWebConsoleNamespace := &bootkube.OpenshiftWebConsoleNamespace{}
173171
openshiftMachineConfigOperator := &bootkube.OpenshiftMachineConfigOperator{}
174172
openshiftClusterAPINamespace := &bootkube.OpenshiftClusterAPINamespace{}
175173
openshiftServiceCertSignerNamespace := &bootkube.OpenshiftServiceCertSignerNamespace{}
@@ -185,7 +183,6 @@ func (m *Manifests) generateBootKubeManifests(dependencies asset.Parents) []*ass
185183
kubeSystemConfigmapEtcdServingCA,
186184
kubeSystemConfigmapRootCA,
187185
kubeSystemSecretEtcdClient,
188-
openshiftWebConsoleNamespace,
189186
openshiftMachineConfigOperator,
190187
openshiftClusterAPINamespace,
191188
openshiftServiceCertSignerNamespace,
@@ -203,7 +200,6 @@ func (m *Manifests) generateBootKubeManifests(dependencies asset.Parents) []*ass
203200
"kube-system-configmap-root-ca.yaml": applyTemplateData(kubeSystemConfigmapRootCA.Files()[0].Data, templateData),
204201
"kube-system-secret-etcd-client.yaml": applyTemplateData(kubeSystemSecretEtcdClient.Files()[0].Data, templateData),
205202

206-
"03-openshift-web-console-namespace.yaml": []byte(openshiftWebConsoleNamespace.Files()[0].Data),
207203
"04-openshift-machine-config-operator.yaml": []byte(openshiftMachineConfigOperator.Files()[0].Data),
208204
"05-openshift-cluster-api-namespace.yaml": []byte(openshiftClusterAPINamespace.Files()[0].Data),
209205
"09-openshift-service-signer-namespace.yaml": []byte(openshiftServiceCertSignerNamespace.Files()[0].Data),

pkg/asset/templates/content/bootkube/03-openshift-web-console-namespace.go

Lines changed: 0 additions & 65 deletions
This file was deleted.

pkg/asset/templates/templates.go

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ func (m *Templates) Dependencies() []asset.Asset {
3232
&bootkube.KubeSystemConfigmapEtcdServingCA{},
3333
&bootkube.KubeSystemConfigmapRootCA{},
3434
&bootkube.KubeSystemSecretEtcdClient{},
35-
&bootkube.OpenshiftWebConsoleNamespace{},
3635
&bootkube.OpenshiftMachineConfigOperator{},
3736
&bootkube.OpenshiftClusterAPINamespace{},
3837
&bootkube.OpenshiftServiceCertSignerNamespace{},
@@ -56,7 +55,6 @@ func (m *Templates) Generate(dependencies asset.Parents) error {
5655
kubeSystemConfigmapEtcdServingCA := &bootkube.KubeSystemConfigmapEtcdServingCA{}
5756
kubeSystemConfigmapRootCA := &bootkube.KubeSystemConfigmapRootCA{}
5857
kubeSystemSecretEtcdClient := &bootkube.KubeSystemSecretEtcdClient{}
59-
openshiftWebConsoleNamespace := &bootkube.OpenshiftWebConsoleNamespace{}
6058
openshiftMachineConfigOperator := &bootkube.OpenshiftMachineConfigOperator{}
6159
openshiftClusterAPINamespace := &bootkube.OpenshiftClusterAPINamespace{}
6260
openshiftServiceCertSignerNamespace := &bootkube.OpenshiftServiceCertSignerNamespace{}
@@ -78,7 +76,6 @@ func (m *Templates) Generate(dependencies asset.Parents) error {
7876
kubeSystemConfigmapEtcdServingCA,
7977
kubeSystemConfigmapRootCA,
8078
kubeSystemSecretEtcdClient,
81-
openshiftWebConsoleNamespace,
8279
openshiftMachineConfigOperator,
8380
openshiftClusterAPINamespace,
8481
openshiftServiceCertSignerNamespace,
@@ -99,7 +96,6 @@ func (m *Templates) Generate(dependencies asset.Parents) error {
9996
m.FileList = append(m.FileList, kubeSystemConfigmapEtcdServingCA.Files()...)
10097
m.FileList = append(m.FileList, kubeSystemConfigmapRootCA.Files()...)
10198
m.FileList = append(m.FileList, kubeSystemSecretEtcdClient.Files()...)
102-
m.FileList = append(m.FileList, openshiftWebConsoleNamespace.Files()...)
10399
m.FileList = append(m.FileList, openshiftMachineConfigOperator.Files()...)
104100
m.FileList = append(m.FileList, openshiftClusterAPINamespace.Files()...)
105101
m.FileList = append(m.FileList, openshiftServiceCertSignerNamespace.Files()...)

0 commit comments

Comments
 (0)