From 35fb1119fb025a37ef8acd8ed029b7d3fa06d55e Mon Sep 17 00:00:00 2001 From: Olu Shiyanbade Date: Fri, 27 Jan 2023 12:26:36 +0000 Subject: [PATCH] trunc to 63 characters --- nxrm-aws-resiliency/templates/workdir-configmap.yaml | 2 +- nxrm-aws-resiliency/templates/workdir-daemonset.yaml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/nxrm-aws-resiliency/templates/workdir-configmap.yaml b/nxrm-aws-resiliency/templates/workdir-configmap.yaml index 2e78b78..72d54be 100644 --- a/nxrm-aws-resiliency/templates/workdir-configmap.yaml +++ b/nxrm-aws-resiliency/templates/workdir-configmap.yaml @@ -1,7 +1,7 @@ apiVersion: v1 kind: ConfigMap 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 }} data: create-nexus-work-dir.sh: | diff --git a/nxrm-aws-resiliency/templates/workdir-daemonset.yaml b/nxrm-aws-resiliency/templates/workdir-daemonset.yaml index e20de01..5260789 100644 --- a/nxrm-aws-resiliency/templates/workdir-daemonset.yaml +++ b/nxrm-aws-resiliency/templates/workdir-daemonset.yaml @@ -1,7 +1,7 @@ apiVersion: apps/v1 kind: DaemonSet 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 }} spec: selector: @@ -17,7 +17,7 @@ spec: initContainers: # Copy file for creating nexus work directory over and execute it on host - name: create-nexus-work-dir - image: ubuntu:latest + image: ubuntu:23.04 command: [/bin/sh] args: - -c @@ -45,7 +45,7 @@ spec: volumes: - name: create-nexus-work-dir-script 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 hostPath: path: /tmp/install