Skip to content
Merged
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
8 changes: 6 additions & 2 deletions .github/trusted_registries.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,12 @@ registry.k8s.io:
kube-state-metrics: ALL_IMAGES
sig-storage:
nfs-provisioner: ALL_TAGS
csi-attacher: ALL_TAGS
csi-node-driver-registrar: ALL_TAGS
csi-provisioner: ALL_TAGS
csi-resizer: ALL_TAGS
csi-snapshotter: ALL_TAGS
livenessprobe: ALL_TAGS
etcd: ALL_TAGS
provider-os: ALL_IMAGES
k8s.gcr.io:
sig-storage: ALL_IMAGES
registry-gitlab.teuto.net: ALL_IMAGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
{{- $repoCharts := (index .Values.global.helmRepositories "cloud-provider-openstack").charts -}}
{{- $selectedVersion := default (index $repoCharts "openstack-cinder-csi") (index $repoCharts (printf "openstack-cinder-csi 2.%d.x" ($.Values.version.minor | int))) -}}
apiVersion: helm.toolkit.fluxcd.io/v2
kind: HelmRelease
metadata:
Expand All @@ -13,7 +15,7 @@ spec:
kind: HelmRepository
name: {{ printf "%s-cloud-provider-openstack" .Release.Name }}
namespace: {{ .Release.Namespace }}
version: {{ printf "2.%d.x" (.Values.version.minor | int) }}
version: {{ $selectedVersion | quote }}
interval: 1h
driftDetection:
mode: enabled
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
{{- $repoCharts := (index .Values.global.helmRepositories "cloud-provider-openstack").charts -}}
{{- $selectedVersion := default (index $repoCharts "openstack-cloud-controller-manager") (index $repoCharts (printf "openstack-cloud-controller-manager 2.%d.x" ($.Values.version.minor | int))) -}}
apiVersion: helm.toolkit.fluxcd.io/v2
kind: HelmRelease
metadata:
Expand All @@ -12,7 +14,7 @@ spec:
kind: HelmRepository
name: {{ printf "%s-cloud-provider-openstack" .Release.Name }}
namespace: {{ .Release.Namespace }}
version: {{ printf "2.%d.x" (.Values.version.minor | int) }}
version: {{ $selectedVersion | quote }}
interval: 1h
driftDetection:
mode: enabled
Expand Down
17 changes: 15 additions & 2 deletions charts/t8s-cluster/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,28 @@ global:
cilium:
url: https://helm.cilium.io
charts:
cilium: 1.x.x
cilium: 1.17.4
condition: '{{ eq (include "t8s-cluster.cni" .) "cilium" }}'
nvidia:
url: https://helm.ngc.nvidia.com/nvidia
charts:
gpu-operator: 24.x
gpu-operator: 24.9.2
condition: '{{ include "t8s-cluster.hasGPUNodes" (dict "context" $) }}'
cloud-provider-openstack:
url: https://kubernetes.github.io/cloud-provider-openstack
charts:
openstack-cloud-controller-manager: 2.32.0
openstack-cloud-controller-manager 2.31.x: 2.31.3
openstack-cloud-controller-manager 2.30.x: 2.30.5
openstack-cloud-controller-manager 2.29.x: 2.29.3
openstack-cloud-controller-manager 2.28.x: 2.28.5
openstack-cloud-controller-manager 2.27.x: 2.27.6
openstack-cinder-csi: 2.32.0
openstack-cinder-csi 2.31.x: 2.31.7
openstack-cinder-csi 2.30.x: 2.30.3
openstack-cinder-csi 2.29.x: 2.29.2
openstack-cinder-csi 2.28.x: 2.28.3
openstack-cinder-csi 2.27.x: 2.27.3
cetic:
url: https://cetic.github.io/helm-charts
etcd:
Expand Down