You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I found that when I deployed services on k8s, var/lib/kvrocks was mounted in pvc, but it was prompted that there was no configuration file. So I modified the configuration file mounting directory and used configmap, but it still prompted the error that the file could not be renamed. , is there any good way to solve this problem? containers: - name: {{ .Chart.Name }} image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}" imagePullPolicy: {{ .Values.image.pullPolicy }} ports: - name: kvrocks containerPort: {{ .Values.kvrocks.port }} protocol: TCP volumeMounts: - name: kvrocks-data mountPath: /var/lib/kvrocks resources: {{- toYaml .Values.resources | nindent 12 }} volumes: - name: kvrocks-data persistentVolumeClaim: claimName: {{ include "kvrocks.name" . }}-pvc
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I found that when I deployed services on k8s, var/lib/kvrocks was mounted in pvc, but it was prompted that there was no configuration file. So I modified the configuration file mounting directory and used configmap, but it still prompted the error that the file could not be renamed. , is there any good way to solve this problem?
containers: - name: {{ .Chart.Name }} image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}" imagePullPolicy: {{ .Values.image.pullPolicy }} ports: - name: kvrocks containerPort: {{ .Values.kvrocks.port }} protocol: TCP volumeMounts: - name: kvrocks-data mountPath: /var/lib/kvrocks resources: {{- toYaml .Values.resources | nindent 12 }} volumes: - name: kvrocks-data persistentVolumeClaim: claimName: {{ include "kvrocks.name" . }}-pvc
Beta Was this translation helpful? Give feedback.
All reactions