Skip to content

Commit

Permalink
feat: Upgrade CCM to v0.4.1
Browse files Browse the repository at this point in the history
Adds support to filter out specified node IP addresses.
  • Loading branch information
jimmidyson committed Aug 25, 2024
1 parent 5829c82 commit f139f2a
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
11 changes: 4 additions & 7 deletions charts/nutanix-cloud-provider/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,14 @@ keywords:
- Cloud Controller Manager
- Cloud
- CCM
version: 0.4.0
appVersion: "v0.4.0"
version: 0.4.1
appVersion: "v0.4.1"
annotations:
artifacthub.io/displayName: "Nutanix Cloud Provider"
artifacthub.io/containsSecurityUpdates: "true"
artifacthub.io/changes: |
- Use a cached prism-go-client with session auth
- Do not log node exists/shutdown status at default verbosity
- Nutanix CCM should scope secret informers per namespace
- Update k8s dependencies to v0.30.2
- Update prism-go-client to v0.4.0
- Support ignoring node IPs in node address discovery
- Update to CCM v0.4.1
artifacthub.io/maintainers: |
- name: Nutanix Cloud Native Team
email: [email protected]
3 changes: 3 additions & 0 deletions charts/nutanix-cloud-provider/templates/cm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ data:
},
"enableCustomLabeling": {{ .Values.enableCustomLabeling }},
{{- with .Values.ignoredNodeIPs }}
"ignoredNodeIPs": [ {{ range $idx, $ip := . }}{{ if $idx }}, {{ end }}"{{ . }}"{{ end }} ],
{{- end }}

{{- if eq .Values.topologyDiscovery.type "Categories" }}
"topologyDiscovery": {
Expand Down
3 changes: 3 additions & 0 deletions charts/nutanix-cloud-provider/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ password: ""
# (prism-element-name, prism-element-uuid, prism-host-name, prism-host-uuid)
enableCustomLabeling: false

# IP addresses to ignore when discovering node addresses from Prism Central
ignoredNodeIPs: []

topologyDiscovery:
# Define how Topology will be discovered
# type can be Prism or Categories
Expand Down

0 comments on commit f139f2a

Please sign in to comment.