trunc to 63 characters

This commit is contained in:
Olu Shiyanbade 2023-01-27 12:26:36 +00:00
parent 8396c0de20
commit 35fb1119fb
2 changed files with 4 additions and 4 deletions

View File

@ -1,7 +1,7 @@
apiVersion: v1 apiVersion: v1
kind: ConfigMap kind: ConfigMap
metadata: metadata:
name: {{ .Chart.Name }}-{{ .Chart.Version }}-{{ .Release.Name }}-create-nexus-workdir-config name: {{ .Chart.Name }}-{{ .Chart.Version }}-{{ .Release.Name }}-create-nexus-workdir-config | trunc 63 | trimSuffix "-"
namespace: {{ .Values.namespaces.nexusNs }} namespace: {{ .Values.namespaces.nexusNs }}
data: data:
create-nexus-work-dir.sh: | create-nexus-work-dir.sh: |

View File

@ -1,7 +1,7 @@
apiVersion: apps/v1 apiVersion: apps/v1
kind: DaemonSet kind: DaemonSet
metadata: metadata:
name: {{ .Chart.Name }}-{{ .Chart.Version }}-{{ .Release.Name }}-create-nexus-work-dir name: {{ .Chart.Name }}-{{ .Chart.Version }}-{{ .Release.Name }}-create-nexus-work-dir | trunc 63 | trimSuffix "-"
namespace: {{ .Values.namespaces.nexusNs }} namespace: {{ .Values.namespaces.nexusNs }}
spec: spec:
selector: selector:
@ -17,7 +17,7 @@ spec:
initContainers: initContainers:
# Copy file for creating nexus work directory over and execute it on host # Copy file for creating nexus work directory over and execute it on host
- name: create-nexus-work-dir - name: create-nexus-work-dir
image: ubuntu:latest image: ubuntu:23.04
command: [/bin/sh] command: [/bin/sh]
args: args:
- -c - -c
@ -45,7 +45,7 @@ spec:
volumes: volumes:
- name: create-nexus-work-dir-script - name: create-nexus-work-dir-script
configMap: configMap:
name: {{ .Chart.Name }}-{{ .Chart.Version }}-{{ .Release.Name }}-create-nexus-workdir-config name: {{ .Chart.Name }}-{{ .Chart.Version }}-{{ .Release.Name }}-create-nexus-workdir-config | trunc 63 | trimSuffix "-"
- name: host-mnt - name: host-mnt
hostPath: hostPath:
path: /tmp/install path: /tmp/install