mirror of
https://github.com/outbackdingo/proxmox-cloud-controller-manager.git
synced 2026-01-27 10:20:13 +00:00
feat(chart): add daemonset mode
Deploy CCM in daemonset mode. It's helpful when CNI doesn't have the node.cloudprovider.kubernetes.io/uninitialized taint. Signed-off-by: Serge Logvinov <serge.logvinov@sinextra.dev>
This commit is contained in:
4
Makefile
4
Makefile
@@ -112,6 +112,10 @@ docs:
|
|||||||
-f charts/proxmox-cloud-controller-manager/values.talos.yaml \
|
-f charts/proxmox-cloud-controller-manager/values.talos.yaml \
|
||||||
--set-string image.tag=$(TAG) \
|
--set-string image.tag=$(TAG) \
|
||||||
charts/proxmox-cloud-controller-manager > docs/deploy/cloud-controller-manager-talos.yml
|
charts/proxmox-cloud-controller-manager > docs/deploy/cloud-controller-manager-talos.yml
|
||||||
|
helm template -n kube-system proxmox-cloud-controller-manager \
|
||||||
|
--set-string image.tag=$(TAG) \
|
||||||
|
--set useDaemonSet=true \
|
||||||
|
charts/proxmox-cloud-controller-manager > docs/deploy/cloud-controller-manager-daemonset.yml
|
||||||
helm-docs --sort-values-order=file charts/proxmox-cloud-controller-manager
|
helm-docs --sort-values-order=file charts/proxmox-cloud-controller-manager
|
||||||
|
|
||||||
release-update:
|
release-update:
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ maintainers:
|
|||||||
# This is the chart version. This version number should be incremented each time you make changes
|
# This is the chart version. This version number should be incremented each time you make changes
|
||||||
# to the chart and its templates, including the app version.
|
# to the chart and its templates, including the app version.
|
||||||
# Versions are expected to follow Semantic Versioning (https://semver.org/)
|
# Versions are expected to follow Semantic Versioning (https://semver.org/)
|
||||||
version: 0.2.0
|
version: 0.2.1
|
||||||
# This is the version number of the application being deployed. This version number should be
|
# This is the version number of the application being deployed. This version number should be
|
||||||
# incremented each time you make changes to the application. Versions are not expected to
|
# incremented each time you make changes to the application. Versions are not expected to
|
||||||
# follow Semantic Versioning. They should reflect the version the application is using.
|
# follow Semantic Versioning. They should reflect the version the application is using.
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# proxmox-cloud-controller-manager
|
# proxmox-cloud-controller-manager
|
||||||
|
|
||||||
  
|
  
|
||||||
|
|
||||||
A Helm chart for Kubernetes
|
A Helm chart for Kubernetes
|
||||||
|
|
||||||
@@ -79,6 +79,7 @@ helm upgrade -i --namespace=kube-system -f proxmox-ccm.yaml \
|
|||||||
| podSecurityContext | object | `{"fsGroup":10258,"fsGroupChangePolicy":"OnRootMismatch","runAsGroup":10258,"runAsNonRoot":true,"runAsUser":10258}` | Pods Security Context. ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod |
|
| podSecurityContext | object | `{"fsGroup":10258,"fsGroupChangePolicy":"OnRootMismatch","runAsGroup":10258,"runAsNonRoot":true,"runAsUser":10258}` | Pods Security Context. ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod |
|
||||||
| securityContext | object | `{"allowPrivilegeEscalation":false,"capabilities":{"drop":["ALL"]},"seccompProfile":{"type":"RuntimeDefault"}}` | Container Security Context. ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod |
|
| securityContext | object | `{"allowPrivilegeEscalation":false,"capabilities":{"drop":["ALL"]},"seccompProfile":{"type":"RuntimeDefault"}}` | Container Security Context. ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod |
|
||||||
| resources | object | `{"requests":{"cpu":"10m","memory":"32Mi"}}` | Resource requests and limits. ref: https://kubernetes.io/docs/user-guide/compute-resources/ |
|
| resources | object | `{"requests":{"cpu":"10m","memory":"32Mi"}}` | Resource requests and limits. ref: https://kubernetes.io/docs/user-guide/compute-resources/ |
|
||||||
|
| useDaemonSet | bool | `false` | Deploy CCM in Daemonset mode. CCM will use hostNetwork. It allows to use CCM without CNI plugins. |
|
||||||
| updateStrategy | object | `{"rollingUpdate":{"maxUnavailable":1},"type":"RollingUpdate"}` | Deployment update stategy type. ref: https://kubernetes.io/docs/concepts/workloads/controllers/deployment/#updating-a-deployment |
|
| updateStrategy | object | `{"rollingUpdate":{"maxUnavailable":1},"type":"RollingUpdate"}` | Deployment update stategy type. ref: https://kubernetes.io/docs/concepts/workloads/controllers/deployment/#updating-a-deployment |
|
||||||
| nodeSelector | object | `{}` | Node labels for data pods assignment. ref: https://kubernetes.io/docs/user-guide/node-selection/ |
|
| nodeSelector | object | `{}` | Node labels for data pods assignment. ref: https://kubernetes.io/docs/user-guide/node-selection/ |
|
||||||
| tolerations | list | `[{"effect":"NoSchedule","key":"node-role.kubernetes.io/control-plane","operator":"Exists"},{"effect":"NoSchedule","key":"node.cloudprovider.kubernetes.io/uninitialized","operator":"Exists"}]` | Tolerations for data pods assignment. ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/ |
|
| tolerations | list | `[{"effect":"NoSchedule","key":"node-role.kubernetes.io/control-plane","operator":"Exists"},{"effect":"NoSchedule","key":"node.cloudprovider.kubernetes.io/uninitialized","operator":"Exists"}]` | Tolerations for data pods assignment. ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/ |
|
||||||
@@ -86,5 +87,3 @@ helm upgrade -i --namespace=kube-system -f proxmox-ccm.yaml \
|
|||||||
| extraVolumes | list | `[]` | Additional volumes for Pods |
|
| extraVolumes | list | `[]` | Additional volumes for Pods |
|
||||||
| extraVolumeMounts | list | `[]` | Additional volume mounts for Pods |
|
| extraVolumeMounts | list | `[]` | Additional volume mounts for Pods |
|
||||||
|
|
||||||
----------------------------------------------
|
|
||||||
Autogenerated from chart metadata using [helm-docs v1.12.0](https://github.com/norwoodj/helm-docs/releases/v1.12.0)
|
|
||||||
|
|||||||
@@ -1,14 +1,23 @@
|
|||||||
apiVersion: apps/v1
|
apiVersion: apps/v1
|
||||||
|
{{- if .Values.useDaemonSet }}
|
||||||
|
kind: DaemonSet
|
||||||
|
{{- else }}
|
||||||
kind: Deployment
|
kind: Deployment
|
||||||
|
{{- end }}
|
||||||
metadata:
|
metadata:
|
||||||
name: {{ include "proxmox-cloud-controller-manager.fullname" . }}
|
name: {{ include "proxmox-cloud-controller-manager.fullname" . }}
|
||||||
labels:
|
labels:
|
||||||
{{- include "proxmox-cloud-controller-manager.labels" . | nindent 4 }}
|
{{- include "proxmox-cloud-controller-manager.labels" . | nindent 4 }}
|
||||||
namespace: {{ .Release.Namespace }}
|
namespace: {{ .Release.Namespace }}
|
||||||
spec:
|
spec:
|
||||||
|
{{- if not .Values.useDaemonSet }}
|
||||||
replicas: {{ .Values.replicaCount }}
|
replicas: {{ .Values.replicaCount }}
|
||||||
strategy:
|
strategy:
|
||||||
type: {{ .Values.updateStrategy.type }}
|
type: {{ .Values.updateStrategy.type }}
|
||||||
|
{{- else }}
|
||||||
|
updateStrategy:
|
||||||
|
type: {{ .Values.updateStrategy.type }}
|
||||||
|
{{- end }}
|
||||||
selector:
|
selector:
|
||||||
matchLabels:
|
matchLabels:
|
||||||
{{- include "proxmox-cloud-controller-manager.selectorLabels" . | nindent 6 }}
|
{{- include "proxmox-cloud-controller-manager.selectorLabels" . | nindent 6 }}
|
||||||
@@ -35,8 +44,14 @@ spec:
|
|||||||
serviceAccountName: {{ include "proxmox-cloud-controller-manager.serviceAccountName" . }}
|
serviceAccountName: {{ include "proxmox-cloud-controller-manager.serviceAccountName" . }}
|
||||||
securityContext:
|
securityContext:
|
||||||
{{- toYaml .Values.podSecurityContext | nindent 8 }}
|
{{- toYaml .Values.podSecurityContext | nindent 8 }}
|
||||||
|
{{- if .Values.useDaemonSet }}
|
||||||
|
dnsPolicy: ClusterFirstWithHostNet
|
||||||
|
hostNetwork: true
|
||||||
|
{{- end }}
|
||||||
|
{{- with .Values.hostAliases }}
|
||||||
hostAliases:
|
hostAliases:
|
||||||
{{- toYaml .Values.hostAliases | nindent 8 }}
|
{{- toYaml . | nindent 8 }}
|
||||||
|
{{- end }}
|
||||||
initContainers: {{- toYaml .Values.initContainers | nindent 8 }}
|
initContainers: {{- toYaml .Values.initContainers | nindent 8 }}
|
||||||
containers:
|
containers:
|
||||||
- name: {{ .Chart.Name }}
|
- name: {{ .Chart.Name }}
|
||||||
@@ -89,10 +104,16 @@ spec:
|
|||||||
topologyKey: topology.kubernetes.io/zone
|
topologyKey: topology.kubernetes.io/zone
|
||||||
weight: 1
|
weight: 1
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- with .Values.tolerations }}
|
|
||||||
tolerations:
|
tolerations:
|
||||||
|
{{- with .Values.tolerations }}
|
||||||
{{- toYaml . | nindent 8 }}
|
{{- toYaml . | nindent 8 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
{{- if .Values.useDaemonSet }}
|
||||||
|
- effect: NoSchedule
|
||||||
|
key: node.kubernetes.io/not-ready
|
||||||
|
operator: Exists
|
||||||
|
{{- end }}
|
||||||
|
{{- if not .Values.useDaemonSet }}
|
||||||
topologySpreadConstraints:
|
topologySpreadConstraints:
|
||||||
- maxSkew: 1
|
- maxSkew: 1
|
||||||
topologyKey: kubernetes.io/hostname
|
topologyKey: kubernetes.io/hostname
|
||||||
@@ -100,6 +121,7 @@ spec:
|
|||||||
labelSelector:
|
labelSelector:
|
||||||
matchLabels:
|
matchLabels:
|
||||||
{{- include "proxmox-cloud-controller-manager.selectorLabels" . | nindent 14 }}
|
{{- include "proxmox-cloud-controller-manager.selectorLabels" . | nindent 14 }}
|
||||||
|
{{- end }}
|
||||||
volumes:
|
volumes:
|
||||||
{{- if .Values.existingConfigSecret }}
|
{{- if .Values.existingConfigSecret }}
|
||||||
- name: cloud-config
|
- name: cloud-config
|
||||||
|
|||||||
@@ -128,6 +128,11 @@ resources:
|
|||||||
cpu: 10m
|
cpu: 10m
|
||||||
memory: 32Mi
|
memory: 32Mi
|
||||||
|
|
||||||
|
# -- Deploy CCM in Daemonset mode.
|
||||||
|
# CCM will use hostNetwork.
|
||||||
|
# It allows to use CCM without CNI plugins.
|
||||||
|
useDaemonSet: false
|
||||||
|
|
||||||
# -- Deployment update stategy type.
|
# -- Deployment update stategy type.
|
||||||
# ref: https://kubernetes.io/docs/concepts/workloads/controllers/deployment/#updating-a-deployment
|
# ref: https://kubernetes.io/docs/concepts/workloads/controllers/deployment/#updating-a-deployment
|
||||||
updateStrategy:
|
updateStrategy:
|
||||||
|
|||||||
202
docs/deploy/cloud-controller-manager-daemonset.yml
Normal file
202
docs/deploy/cloud-controller-manager-daemonset.yml
Normal file
@@ -0,0 +1,202 @@
|
|||||||
|
---
|
||||||
|
# Source: proxmox-cloud-controller-manager/templates/serviceaccount.yaml
|
||||||
|
apiVersion: v1
|
||||||
|
kind: ServiceAccount
|
||||||
|
metadata:
|
||||||
|
name: proxmox-cloud-controller-manager
|
||||||
|
labels:
|
||||||
|
helm.sh/chart: proxmox-cloud-controller-manager-0.2.1
|
||||||
|
app.kubernetes.io/name: proxmox-cloud-controller-manager
|
||||||
|
app.kubernetes.io/instance: proxmox-cloud-controller-manager
|
||||||
|
app.kubernetes.io/version: "v0.4.0"
|
||||||
|
app.kubernetes.io/managed-by: Helm
|
||||||
|
namespace: kube-system
|
||||||
|
---
|
||||||
|
# Source: proxmox-cloud-controller-manager/templates/role.yaml
|
||||||
|
apiVersion: rbac.authorization.k8s.io/v1
|
||||||
|
kind: ClusterRole
|
||||||
|
metadata:
|
||||||
|
name: system:proxmox-cloud-controller-manager
|
||||||
|
labels:
|
||||||
|
helm.sh/chart: proxmox-cloud-controller-manager-0.2.1
|
||||||
|
app.kubernetes.io/name: proxmox-cloud-controller-manager
|
||||||
|
app.kubernetes.io/instance: proxmox-cloud-controller-manager
|
||||||
|
app.kubernetes.io/version: "v0.4.0"
|
||||||
|
app.kubernetes.io/managed-by: Helm
|
||||||
|
rules:
|
||||||
|
- apiGroups:
|
||||||
|
- coordination.k8s.io
|
||||||
|
resources:
|
||||||
|
- leases
|
||||||
|
verbs:
|
||||||
|
- get
|
||||||
|
- create
|
||||||
|
- update
|
||||||
|
- apiGroups:
|
||||||
|
- ""
|
||||||
|
resources:
|
||||||
|
- events
|
||||||
|
verbs:
|
||||||
|
- create
|
||||||
|
- patch
|
||||||
|
- update
|
||||||
|
- apiGroups:
|
||||||
|
- ""
|
||||||
|
resources:
|
||||||
|
- nodes
|
||||||
|
verbs:
|
||||||
|
- get
|
||||||
|
- list
|
||||||
|
- watch
|
||||||
|
- update
|
||||||
|
- patch
|
||||||
|
- delete
|
||||||
|
- apiGroups:
|
||||||
|
- ""
|
||||||
|
resources:
|
||||||
|
- nodes/status
|
||||||
|
verbs:
|
||||||
|
- patch
|
||||||
|
- apiGroups:
|
||||||
|
- ""
|
||||||
|
resources:
|
||||||
|
- serviceaccounts
|
||||||
|
verbs:
|
||||||
|
- create
|
||||||
|
- get
|
||||||
|
- apiGroups:
|
||||||
|
- ""
|
||||||
|
resources:
|
||||||
|
- serviceaccounts/token
|
||||||
|
verbs:
|
||||||
|
- create
|
||||||
|
---
|
||||||
|
# Source: proxmox-cloud-controller-manager/templates/rolebinding.yaml
|
||||||
|
kind: ClusterRoleBinding
|
||||||
|
apiVersion: rbac.authorization.k8s.io/v1
|
||||||
|
metadata:
|
||||||
|
name: system:proxmox-cloud-controller-manager
|
||||||
|
roleRef:
|
||||||
|
apiGroup: rbac.authorization.k8s.io
|
||||||
|
kind: ClusterRole
|
||||||
|
name: system:proxmox-cloud-controller-manager
|
||||||
|
subjects:
|
||||||
|
- kind: ServiceAccount
|
||||||
|
name: proxmox-cloud-controller-manager
|
||||||
|
namespace: kube-system
|
||||||
|
---
|
||||||
|
# Source: proxmox-cloud-controller-manager/templates/rolebinding.yaml
|
||||||
|
apiVersion: rbac.authorization.k8s.io/v1
|
||||||
|
kind: RoleBinding
|
||||||
|
metadata:
|
||||||
|
name: system:proxmox-cloud-controller-manager:extension-apiserver-authentication-reader
|
||||||
|
namespace: kube-system
|
||||||
|
roleRef:
|
||||||
|
apiGroup: rbac.authorization.k8s.io
|
||||||
|
kind: Role
|
||||||
|
name: extension-apiserver-authentication-reader
|
||||||
|
subjects:
|
||||||
|
- kind: ServiceAccount
|
||||||
|
name: proxmox-cloud-controller-manager
|
||||||
|
namespace: kube-system
|
||||||
|
---
|
||||||
|
# Source: proxmox-cloud-controller-manager/templates/deployment.yaml
|
||||||
|
apiVersion: apps/v1
|
||||||
|
kind: DaemonSet
|
||||||
|
metadata:
|
||||||
|
name: proxmox-cloud-controller-manager
|
||||||
|
labels:
|
||||||
|
helm.sh/chart: proxmox-cloud-controller-manager-0.2.1
|
||||||
|
app.kubernetes.io/name: proxmox-cloud-controller-manager
|
||||||
|
app.kubernetes.io/instance: proxmox-cloud-controller-manager
|
||||||
|
app.kubernetes.io/version: "v0.4.0"
|
||||||
|
app.kubernetes.io/managed-by: Helm
|
||||||
|
namespace: kube-system
|
||||||
|
spec:
|
||||||
|
updateStrategy:
|
||||||
|
type: RollingUpdate
|
||||||
|
selector:
|
||||||
|
matchLabels:
|
||||||
|
app.kubernetes.io/name: proxmox-cloud-controller-manager
|
||||||
|
app.kubernetes.io/instance: proxmox-cloud-controller-manager
|
||||||
|
template:
|
||||||
|
metadata:
|
||||||
|
annotations:
|
||||||
|
checksum/config: c69436cb1e16c36ff708b1003d3ca4c6ee6484d2524e2ba7d9b68f473acaa1ca
|
||||||
|
labels:
|
||||||
|
app.kubernetes.io/name: proxmox-cloud-controller-manager
|
||||||
|
app.kubernetes.io/instance: proxmox-cloud-controller-manager
|
||||||
|
spec:
|
||||||
|
enableServiceLinks: false
|
||||||
|
priorityClassName: system-cluster-critical
|
||||||
|
serviceAccountName: proxmox-cloud-controller-manager
|
||||||
|
securityContext:
|
||||||
|
fsGroup: 10258
|
||||||
|
fsGroupChangePolicy: OnRootMismatch
|
||||||
|
runAsGroup: 10258
|
||||||
|
runAsNonRoot: true
|
||||||
|
runAsUser: 10258
|
||||||
|
dnsPolicy: ClusterFirstWithHostNet
|
||||||
|
hostNetwork: true
|
||||||
|
initContainers:
|
||||||
|
[]
|
||||||
|
containers:
|
||||||
|
- name: proxmox-cloud-controller-manager
|
||||||
|
securityContext:
|
||||||
|
allowPrivilegeEscalation: false
|
||||||
|
capabilities:
|
||||||
|
drop:
|
||||||
|
- ALL
|
||||||
|
seccompProfile:
|
||||||
|
type: RuntimeDefault
|
||||||
|
image: "ghcr.io/sergelogvinov/proxmox-cloud-controller-manager:v0.4.0"
|
||||||
|
imagePullPolicy: IfNotPresent
|
||||||
|
args:
|
||||||
|
- --v=2
|
||||||
|
- --cloud-provider=proxmox
|
||||||
|
- --cloud-config=/etc/proxmox/config.yaml
|
||||||
|
- --controllers=cloud-node,cloud-node-lifecycle
|
||||||
|
- --leader-elect-resource-name=cloud-controller-manager-proxmox
|
||||||
|
- --use-service-account-credentials
|
||||||
|
- --secure-port=10258
|
||||||
|
livenessProbe:
|
||||||
|
httpGet:
|
||||||
|
path: /healthz
|
||||||
|
port: 10258
|
||||||
|
scheme: HTTPS
|
||||||
|
initialDelaySeconds: 20
|
||||||
|
periodSeconds: 30
|
||||||
|
timeoutSeconds: 5
|
||||||
|
resources:
|
||||||
|
requests:
|
||||||
|
cpu: 10m
|
||||||
|
memory: 32Mi
|
||||||
|
volumeMounts:
|
||||||
|
- name: cloud-config
|
||||||
|
mountPath: /etc/proxmox
|
||||||
|
readOnly: true
|
||||||
|
affinity:
|
||||||
|
podAntiAffinity:
|
||||||
|
preferredDuringSchedulingIgnoredDuringExecution:
|
||||||
|
- podAffinityTerm:
|
||||||
|
labelSelector:
|
||||||
|
matchLabels:
|
||||||
|
app.kubernetes.io/name: proxmox-cloud-controller-manager
|
||||||
|
app.kubernetes.io/instance: proxmox-cloud-controller-manager
|
||||||
|
topologyKey: topology.kubernetes.io/zone
|
||||||
|
weight: 1
|
||||||
|
tolerations:
|
||||||
|
- effect: NoSchedule
|
||||||
|
key: node-role.kubernetes.io/control-plane
|
||||||
|
operator: Exists
|
||||||
|
- effect: NoSchedule
|
||||||
|
key: node.cloudprovider.kubernetes.io/uninitialized
|
||||||
|
operator: Exists
|
||||||
|
- effect: NoSchedule
|
||||||
|
key: node.kubernetes.io/not-ready
|
||||||
|
operator: Exists
|
||||||
|
volumes:
|
||||||
|
- name: cloud-config
|
||||||
|
secret:
|
||||||
|
secretName: proxmox-cloud-controller-manager
|
||||||
|
defaultMode: 416
|
||||||
@@ -5,7 +5,7 @@ kind: ServiceAccount
|
|||||||
metadata:
|
metadata:
|
||||||
name: proxmox-cloud-controller-manager
|
name: proxmox-cloud-controller-manager
|
||||||
labels:
|
labels:
|
||||||
helm.sh/chart: proxmox-cloud-controller-manager-0.2.0
|
helm.sh/chart: proxmox-cloud-controller-manager-0.2.1
|
||||||
app.kubernetes.io/name: proxmox-cloud-controller-manager
|
app.kubernetes.io/name: proxmox-cloud-controller-manager
|
||||||
app.kubernetes.io/instance: proxmox-cloud-controller-manager
|
app.kubernetes.io/instance: proxmox-cloud-controller-manager
|
||||||
app.kubernetes.io/version: "v0.4.0"
|
app.kubernetes.io/version: "v0.4.0"
|
||||||
@@ -18,7 +18,7 @@ kind: ClusterRole
|
|||||||
metadata:
|
metadata:
|
||||||
name: system:proxmox-cloud-controller-manager
|
name: system:proxmox-cloud-controller-manager
|
||||||
labels:
|
labels:
|
||||||
helm.sh/chart: proxmox-cloud-controller-manager-0.2.0
|
helm.sh/chart: proxmox-cloud-controller-manager-0.2.1
|
||||||
app.kubernetes.io/name: proxmox-cloud-controller-manager
|
app.kubernetes.io/name: proxmox-cloud-controller-manager
|
||||||
app.kubernetes.io/instance: proxmox-cloud-controller-manager
|
app.kubernetes.io/instance: proxmox-cloud-controller-manager
|
||||||
app.kubernetes.io/version: "v0.4.0"
|
app.kubernetes.io/version: "v0.4.0"
|
||||||
@@ -106,7 +106,7 @@ kind: Deployment
|
|||||||
metadata:
|
metadata:
|
||||||
name: proxmox-cloud-controller-manager
|
name: proxmox-cloud-controller-manager
|
||||||
labels:
|
labels:
|
||||||
helm.sh/chart: proxmox-cloud-controller-manager-0.2.0
|
helm.sh/chart: proxmox-cloud-controller-manager-0.2.1
|
||||||
app.kubernetes.io/name: proxmox-cloud-controller-manager
|
app.kubernetes.io/name: proxmox-cloud-controller-manager
|
||||||
app.kubernetes.io/instance: proxmox-cloud-controller-manager
|
app.kubernetes.io/instance: proxmox-cloud-controller-manager
|
||||||
app.kubernetes.io/version: "v0.4.0"
|
app.kubernetes.io/version: "v0.4.0"
|
||||||
@@ -137,8 +137,6 @@ spec:
|
|||||||
runAsGroup: 10258
|
runAsGroup: 10258
|
||||||
runAsNonRoot: true
|
runAsNonRoot: true
|
||||||
runAsUser: 10258
|
runAsUser: 10258
|
||||||
hostAliases:
|
|
||||||
[]
|
|
||||||
initContainers:
|
initContainers:
|
||||||
[]
|
[]
|
||||||
containers:
|
containers:
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ kind: ServiceAccount
|
|||||||
metadata:
|
metadata:
|
||||||
name: proxmox-cloud-controller-manager
|
name: proxmox-cloud-controller-manager
|
||||||
labels:
|
labels:
|
||||||
helm.sh/chart: proxmox-cloud-controller-manager-0.2.0
|
helm.sh/chart: proxmox-cloud-controller-manager-0.2.1
|
||||||
app.kubernetes.io/name: proxmox-cloud-controller-manager
|
app.kubernetes.io/name: proxmox-cloud-controller-manager
|
||||||
app.kubernetes.io/instance: proxmox-cloud-controller-manager
|
app.kubernetes.io/instance: proxmox-cloud-controller-manager
|
||||||
app.kubernetes.io/version: "v0.4.0"
|
app.kubernetes.io/version: "v0.4.0"
|
||||||
@@ -18,7 +18,7 @@ kind: ClusterRole
|
|||||||
metadata:
|
metadata:
|
||||||
name: system:proxmox-cloud-controller-manager
|
name: system:proxmox-cloud-controller-manager
|
||||||
labels:
|
labels:
|
||||||
helm.sh/chart: proxmox-cloud-controller-manager-0.2.0
|
helm.sh/chart: proxmox-cloud-controller-manager-0.2.1
|
||||||
app.kubernetes.io/name: proxmox-cloud-controller-manager
|
app.kubernetes.io/name: proxmox-cloud-controller-manager
|
||||||
app.kubernetes.io/instance: proxmox-cloud-controller-manager
|
app.kubernetes.io/instance: proxmox-cloud-controller-manager
|
||||||
app.kubernetes.io/version: "v0.4.0"
|
app.kubernetes.io/version: "v0.4.0"
|
||||||
@@ -106,7 +106,7 @@ kind: Deployment
|
|||||||
metadata:
|
metadata:
|
||||||
name: proxmox-cloud-controller-manager
|
name: proxmox-cloud-controller-manager
|
||||||
labels:
|
labels:
|
||||||
helm.sh/chart: proxmox-cloud-controller-manager-0.2.0
|
helm.sh/chart: proxmox-cloud-controller-manager-0.2.1
|
||||||
app.kubernetes.io/name: proxmox-cloud-controller-manager
|
app.kubernetes.io/name: proxmox-cloud-controller-manager
|
||||||
app.kubernetes.io/instance: proxmox-cloud-controller-manager
|
app.kubernetes.io/instance: proxmox-cloud-controller-manager
|
||||||
app.kubernetes.io/version: "v0.4.0"
|
app.kubernetes.io/version: "v0.4.0"
|
||||||
@@ -137,8 +137,6 @@ spec:
|
|||||||
runAsGroup: 10258
|
runAsGroup: 10258
|
||||||
runAsNonRoot: true
|
runAsNonRoot: true
|
||||||
runAsUser: 10258
|
runAsUser: 10258
|
||||||
hostAliases:
|
|
||||||
[]
|
|
||||||
initContainers:
|
initContainers:
|
||||||
[]
|
[]
|
||||||
containers:
|
containers:
|
||||||
|
|||||||
Reference in New Issue
Block a user