Commit 53ce8cd1 authored by Waqar Ahmed's avatar Waqar Ahmed

Add test values yaml file

parent a99d01b0
...@@ -89,6 +89,7 @@ questions: ...@@ -89,6 +89,7 @@ questions:
- variable: secretKey - variable: secretKey
label: "Secret Key" label: "Secret Key"
group: "Minio Configuration"
schema: schema:
type: string type: string
required: true required: true
...@@ -101,6 +102,7 @@ questions: ...@@ -101,6 +102,7 @@ questions:
schema: schema:
type: dict type: dict
additional_attrs: true additional_attrs: true
attrs: []
- variable: service - variable: service
description: "Minio Service Configuration" description: "Minio Service Configuration"
......
Minio can be accessed from the following URL: Minio can be accessed from the following URL:
http://$node_ip:{{ .Values.plexServiceTCP.port }}/ http://$node_ip:{{ .Values.service.nodePort }}/
...@@ -23,7 +23,6 @@ spec: ...@@ -23,7 +23,6 @@ spec:
release: {{ .Release.Name }} release: {{ .Release.Name }}
annotations: annotations:
checksum/secrets: {{ include (print $.Template.BasePath "/secrets.yaml") . | sha256sum }} checksum/secrets: {{ include (print $.Template.BasePath "/secrets.yaml") . | sha256sum }}
checksum/config: {{ include (print $.Template.BasePath "/configmap.yaml") . | sha256sum }}
spec: spec:
serviceAccountName: {{ include "minio.serviceAccountName" . | quote }} serviceAccountName: {{ include "minio.serviceAccountName" . | quote }}
containers: containers:
...@@ -33,7 +32,7 @@ spec: ...@@ -33,7 +32,7 @@ spec:
command: command:
- "/bin/sh" - "/bin/sh"
- "-ce" - "-ce"
- "/usr/bin/docker-entrypoint.sh minio -S server /export {{- template "minio.extraArgs" . }}" - "/usr/bin/docker-entrypoint.sh minio server /export {{- template "minio.extraArgs" . }}"
volumeMounts: volumeMounts:
- name: export - name: export
mountPath: /export mountPath: /export
......
## Set default image, imageTag, and imagePullPolicy. mode is used to indicate the
##
image:
repository: minio/minio
tag: RELEASE.2020-11-19T23-48-16Z
pullPolicy: IfNotPresent
## Additional arguments to pass to minio binary
extraArgs: []
updateStrategy: RollingUpdate
service:
nodePort: 32000
environment:
## Please refer for comprehensive list https://docs.minio.io/docs/minio-server-configuration-guide.html
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment