File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -15,12 +15,12 @@ type: application
1515# This is the chart version. This version number should be incremented each time you make changes
1616# to the chart and its templates, including the app version.
1717# Versions are expected to follow Semantic Versioning (https://semver.org/)
18- version : 2 .0.0
18+ version : 3 .0.1
1919
2020# This is the version number of the application being deployed. This version number should be
2121# incremented each time you make changes to the application. Versions are not expected to
2222# follow Semantic Versioning. They should reflect the version the application is using.
23- appVersion : v3 .0.0
23+ appVersion : v4 .0.1
2424home : https://github.com/netrisai/netris-operator
2525icon : https://www.netris.ai/wp-content/uploads/2021/01/logo-300.png # [todo] Change url to permalink
2626keywords :
Original file line number Diff line number Diff line change @@ -111,3 +111,4 @@ The following table lists the configurable parameters of the netris-operator cha
111111| ` requeueInterval ` | Requeue interval in seconds for the netris-operator | ` 15 ` |
112112| ` calicoASNRange ` | Set Nodes ASN range. Used when Netris-Operator manages Calico CNI | ` 4230000000-4239999999 ` |
113113| ` l4lbTenant ` | Set the default Tenant for L4LB resources. If set, a tenant autodetection for L4LB resources will be disabled | ` "" ` |
114+ | ` vpcid ` | Set the VPC ID (integer) where to create LB | ` 1 ` |
Original file line number Diff line number Diff line change @@ -107,6 +107,10 @@ spec:
107107 type : string
108108 tenantId :
109109 type : integer
110+ vpcId :
111+ type : integer
112+ vpcName :
113+ type : string
110114 required :
111115 - automatic
112116 - backendIps
Original file line number Diff line number Diff line change @@ -119,4 +119,6 @@ Create netris-opeator controller envs
119119 value: {{ .Values.calicoASNRange | default " 4230000000-4239999999" }}
120120- name: NOPERATOR_L4LB_TENANT
121121 value: {{ .Values.l4lbTenant | default " " | quote }}
122+ - name: NOPERATOR_VPC_ID
123+ value: {{ .Values.vpcid | default 1 | quote }}
122124{{- end -}}
Original file line number Diff line number Diff line change @@ -43,6 +43,9 @@ calicoASNRange: 4230000000-4239999999
4343# Set the default Tenant for L4LB resources. If set, a tenant autodetection for L4LB resources will be disabled
4444l4lbTenant : " "
4545
46+ # Set VPC ID to handle (integer)
47+ vpcid : 1
48+
4649rbac :
4750 # Specifies whether RBAC resources should be created
4851 create : true
You can’t perform that action at this time.
0 commit comments