Skip to content

Commit 945abdc

Browse files
committed
Fix names of with-dns overlay
1 parent 7349421 commit 945abdc

File tree

3 files changed

+12
-11
lines changed

3 files changed

+12
-11
lines changed

webhosting-operator/config/manager/with-dns/kustomization.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,10 @@ generatorOptions:
55
disableNameSuffixHash: true
66

77
configMapGenerator:
8-
- files:
9-
- controller_manager_config.yaml
10-
name: manager-config
8+
- name: webhosting-operator
9+
namespace: webhosting-system
10+
files:
11+
- config.yaml
1112

1213
patches:
1314
- path: manager_patch.yaml
Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
apiVersion: apps/v1
22
kind: Deployment
33
metadata:
4-
name: operator
5-
namespace: system
4+
name: webhosting-operator
5+
namespace: webhosting-system
66
spec:
77
template:
88
spec:
99
containers:
1010
- name: manager
1111
args:
12-
- --config=/controller_manager_config.yaml
12+
- --config=/config.yaml
1313
volumeMounts:
14-
- name: manager-config
15-
mountPath: /controller_manager_config.yaml
16-
subPath: controller_manager_config.yaml
14+
- name: config
15+
mountPath: /config.yaml
16+
subPath: config.yaml
1717
volumes:
18-
- name: manager-config
18+
- name: config
1919
configMap:
20-
name: manager-config
20+
name: webhosting-operator

0 commit comments

Comments
 (0)