fix: remove unicode from ceph-csi-yaml (#400)

Reviewed-on: #400
This commit is contained in:
Ben Vincent 2025-09-21 00:41:06 +10:00
parent b224cfb516
commit a9c959d924
2 changed files with 20 additions and 20 deletions

View File

@ -5,12 +5,12 @@ metadata:
name: csi-rbdplugin-provisioner name: csi-rbdplugin-provisioner
namespace: ceph-csi namespace: ceph-csi
labels: labels:
app: csimetrics app: csi-metrics
spec: spec:
selector: selector:
app: csirbdpluginprovisioner app: csi-rbdplugin-provisioner
ports: ports:
- name: httpmetrics - name: http-metrics
port: 8080 port: 8080
protocol: TCP protocol: TCP
targetPort: 8680 targetPort: 8680
@ -19,17 +19,17 @@ spec:
apiVersion: apps/v1 apiVersion: apps/v1
kind: Deployment kind: Deployment
metadata: metadata:
name: csirbdpluginprovisioner name: csi-rbdplugin-provisioner
namespace: ceph-csi namespace: ceph-csi
spec: spec:
replicas: 3 replicas: 3
selector: selector:
matchLabels: matchLabels:
app: csirbdpluginprovisioner app: csi-rbdplugin-provisioner
template: template:
metadata: metadata:
labels: labels:
app: csirbdpluginprovisioner app: csi-rbdplugin-provisioner
spec: spec:
affinity: affinity:
podAntiAffinity: podAntiAffinity:
@ -39,12 +39,12 @@ spec:
- key: app - key: app
operator: In operator: In
values: values:
- csirbdpluginprovisioner - csi-rbdplugin-provisioner
topologyKey: "kubernetes.io/hostname" topologyKey: "kubernetes.io/hostname"
serviceAccountName: rbdcsiprovisioner serviceAccountName: rbd-csi-provisioner
priorityClassName: systemclustercritical priorityClassName: system-cluster-critical
containers: containers:
- name: csirbdplugin - name: csi-rbdplugin
image: quay.io/cephcsi/cephcsi:v3.15 image: quay.io/cephcsi/cephcsi:v3.15
args: args:
- "--nodeid=$(NODE_ID)" - "--nodeid=$(NODE_ID)"

View File

@ -2,24 +2,24 @@
apiVersion: apps/v1 apiVersion: apps/v1
kind: DaemonSet kind: DaemonSet
metadata: metadata:
name: csirbdplugin name: csi-rbdplugin
namespace: ceph-csi namespace: ceph-csi
spec: spec:
selector: selector:
matchLabels: matchLabels:
app: csirbdplugin app: csi-rbdplugin
template: template:
metadata: metadata:
labels: labels:
app: csirbdplugin app: csi-rbdplugin
spec: spec:
serviceAccountName: rbdcsinodeplugin serviceAccountName: rbd-csi-nodeplugin
hostNetwork: true hostNetwork: true
hostPID: true hostPID: true
priorityClassName: systemnodecritical priorityClassName: system-node-critical
dnsPolicy: ClusterFirstWithHostNet dnsPolicy: ClusterFirstWithHostNet
containers: containers:
- name: csirbdplugin - name: csi-rbdplugin
securityContext: securityContext:
privileged: true privileged: true
capabilities: capabilities:
@ -89,7 +89,7 @@ spec:
- name: oidc-token - name: oidc-token
mountPath: /run/secrets/tokens mountPath: /run/secrets/tokens
readOnly: true readOnly: true
# possibly sidecars like driverregistrar, liveness, etc. # possibly sidecars like driver-registrar, liveness, etc.
volumes: volumes:
- name: socket-dir - name: socket-dir
hostPath: hostPath:
@ -144,12 +144,12 @@ metadata:
name: csi-metrics-rbdplugin name: csi-metrics-rbdplugin
namespace: ceph-csi namespace: ceph-csi
labels: labels:
app: csimetrics app: csi-metrics
spec: spec:
ports: ports:
- name: httpmetrics - name: http-metrics
port: 8080 port: 8080
protocol: TCP protocol: TCP
targetPort: 8680 targetPort: 8680
selector: selector:
app: csirbdplugin app: csi-rbdplugin