Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Upgrade CCM to v0.4.1 #153

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading