File tree Expand file tree Collapse file tree
charts/cloudhealth-collector Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -94,6 +94,7 @@ $ helm repo remove cloudhealth
9494| `podAnnotations` | Additional pod annotations | `{}` |
9595| `podSecurityContext` | Enable security context for CloudHealth Collector pods | `{}` |
9696| `securityContext` | Enable security context for CloudHealth Collector | `{}` |
97+ | `hostNetwork` | Run collector pod on Host Network | `false` |
9798| `affinity` | Affinity for pod assignment | `{}` |
9899| `nodeSelector` | Node labels for pod assignment | `{}` |
99100| `tolerations` | Tolerations for pod assignment | `[]` |
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ apiVersion: v2
55name : cloudhealth-collector
66description : A Helm chart for CloudHealth's Kubernetes Collector Agent
77type : application
8- version : 4.6.2
8+ version : 4.6.3
99appVersion : " 7.0.0"
1010home : https://cloudhealth.vmware.com/
1111icon : https://d1fto35gcfffzn.cloudfront.net/images/Tanzu-Logomark.svg
Original file line number Diff line number Diff line change 3232 securityContext : {{- toYaml . | nindent 8 }}
3333 {{- end }}
3434 priorityClassName : {{ .Values.priorityClassName }}
35+ hostNetwork : {{ .Values.hostNetwork }}
3536 {{- if .Values.proxy.sslCert }}
3637 initContainers :
3738 - name : " {{ .Chart.Name }}-pem-to-truststore"
Original file line number Diff line number Diff line change @@ -65,6 +65,9 @@ containerSecurityContext: {
6565 capabilities : {drop: [all]}
6666}
6767
68+ # -- Run the collector on the host network
69+ hostNetwork : false
70+
6871proxy :
6972 sslCert : false
7073 # -Dhttps.proxyHost=$PROXY_SERVER -Dhttps.proxyPort=$PROXY_PORT -Dhttps.nonProxyHosts=kubernetes.default.svc -Djavax.net.ssl.trustStore=/etc/ssl/certs/truststore.jks -Djavax.net.ssl.trustStorePassword=changeit
You can’t perform that action at this time.
0 commit comments