File tree 3 files changed +49
-2
lines changed
3 files changed +49
-2
lines changed Original file line number Diff line number Diff line change
1
+ apiVersion : rbac.authorization.k8s.io/v1
2
+ kind : ClusterRole
3
+ metadata :
4
+ labels :
5
+ kubernetes.io/bootstrapping : rbac-defaults
6
+ name : system:vpc-nat-gw
7
+ rules :
8
+ - apiGroups :
9
+ - " "
10
+ resources :
11
+ - services
12
+ - pods
13
+ verbs :
14
+ - list
15
+ - watch
16
+ - apiGroups :
17
+ - kubeovn.io
18
+ resources :
19
+ - iptables-eips
20
+ - subnets
21
+ - vpc-nat-gateways
22
+ verbs :
23
+ - list
24
+ - watch
25
+ ---
26
+ apiVersion : rbac.authorization.k8s.io/v1
27
+ kind : ClusterRoleBinding
28
+ metadata :
29
+ annotations :
30
+ rbac.authorization.kubernetes.io/autoupdate : " true"
31
+ labels :
32
+ kubernetes.io/bootstrapping : rbac-defaults
33
+ name : vpc-nat-gw
34
+ roleRef :
35
+ apiGroup : rbac.authorization.k8s.io
36
+ kind : ClusterRole
37
+ name : system:vpc-nat-gw
38
+ subjects :
39
+ - kind : ServiceAccount
40
+ name : vpc-nat-gw
41
+ namespace : {{ .Values.namespace }}
42
+ ---
43
+ apiVersion : v1
44
+ kind : ServiceAccount
45
+ metadata :
46
+ name : vpc-nat-gw
47
+ namespace : {{ .Values.namespace }}
Original file line number Diff line number Diff line change @@ -17,6 +17,6 @@ kind: ConfigMap
17
17
apiVersion : v1
18
18
metadata :
19
19
name : ovn-vpc-nat-gw-config
20
- namespace : kube-system
20
+ namespace : {{ .Values.namespace }}
21
21
data :
22
22
enable-vpc-nat-gw : " {{ .Values.func.ENABLE_NAT_GW }}"
Original file line number Diff line number Diff line change @@ -163,7 +163,7 @@ natGw:
163
163
# This requires Multus to be installed
164
164
apiNad :
165
165
# -- Enable the creation of the API NAD
166
- enabled : true
166
+ enabled : false
167
167
# -- Name of the NAD
168
168
name : ovn-kubernetes-api
169
169
# -- Name of the provider, must be in the form "nadName.nadNamespace.ovn"
You can’t perform that action at this time.
0 commit comments