externalise config map name
This commit is contained in:
parent
35fb1119fb
commit
00dfee338c
@ -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 | trunc 63 | trimSuffix "-"
|
name: {{ .Values.workdir.configmap.name }}
|
||||||
namespace: {{ .Values.namespaces.nexusNs }}
|
namespace: {{ .Values.namespaces.nexusNs }}
|
||||||
data:
|
data:
|
||||||
create-nexus-work-dir.sh: |
|
create-nexus-work-dir.sh: |
|
||||||
|
@ -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 | trunc 63 | trimSuffix "-"
|
name: {{ .Values.workdir.daemonset.name }}
|
||||||
namespace: {{ .Values.namespaces.nexusNs }}
|
namespace: {{ .Values.namespaces.nexusNs }}
|
||||||
spec:
|
spec:
|
||||||
selector:
|
selector:
|
||||||
@ -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 | trunc 63 | trimSuffix "-"
|
name: {{ .Values.workdir.configmap.name }}
|
||||||
- name: host-mnt
|
- name: host-mnt
|
||||||
hostPath:
|
hostPath:
|
||||||
path: /tmp/install
|
path: /tmp/install
|
||||||
|
@ -62,6 +62,11 @@ ingress:
|
|||||||
# alb.ingress.kubernetes.io/listen-ports: '[{"HTTPS":443}]' #uncomment if you use docker repositories
|
# alb.ingress.kubernetes.io/listen-ports: '[{"HTTPS":443}]' #uncomment if you use docker repositories
|
||||||
# alb.ingress.kubernetes.io/certificate-arn: arn:aws:acm:us-east-1:0000000000000:certificate/00000000-1111-2222-3333-444444444444 # Uncomment if you use docker repositories - The AWS Certificate Manager ARN for your HTTPS certificate
|
# alb.ingress.kubernetes.io/certificate-arn: arn:aws:acm:us-east-1:0000000000000:certificate/00000000-1111-2222-3333-444444444444 # Uncomment if you use docker repositories - The AWS Certificate Manager ARN for your HTTPS certificate
|
||||||
# external-dns.alpha.kubernetes.io/hostname: dockerrepo1.example.com, dockerrepo2.example.com, dockerrepo3.example.com # Add more docker subdomains using dockerrepoName.example.com othereise comment out if you don't use docker repositories
|
# external-dns.alpha.kubernetes.io/hostname: dockerrepo1.example.com, dockerrepo2.example.com, dockerrepo3.example.com # Add more docker subdomains using dockerrepoName.example.com othereise comment out if you don't use docker repositories
|
||||||
|
workdir:
|
||||||
|
configmap:
|
||||||
|
name: create-nexus-workdir-config
|
||||||
|
daemonset:
|
||||||
|
name: create-nexus-work-dir
|
||||||
storageClass:
|
storageClass:
|
||||||
iopsPerGB: "10" #Note: aws plugin multiplies this by the size of the requested volumne to compute IOPS of the volumne and caps it a 20, 000 IOPS
|
iopsPerGB: "10" #Note: aws plugin multiplies this by the size of the requested volumne to compute IOPS of the volumne and caps it a 20, 000 IOPS
|
||||||
pv:
|
pv:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user