Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
Charts
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
魏国强
Charts
Commits
993b6e35
Commit
993b6e35
authored
Dec 09, 2020
by
Waqar Ahmed
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove imagePullSecrets options
parent
4abf36ff
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
0 additions
and
32 deletions
+0
-32
test/minio/8.0.5/README.md
test/minio/8.0.5/README.md
+0
-1
test/minio/8.0.5/templates/_helpers.tpl
test/minio/8.0.5/templates/_helpers.tpl
+0
-25
test/minio/8.0.5/templates/deployment.yaml
test/minio/8.0.5/templates/deployment.yaml
+0
-1
test/minio/8.0.5/templates/post-install-create-bucket-job.yaml
...minio/8.0.5/templates/post-install-create-bucket-job.yaml
+0
-1
test/minio/8.0.5/templates/statefulset.yaml
test/minio/8.0.5/templates/statefulset.yaml
+0
-1
test/minio/8.0.5/values.yaml
test/minio/8.0.5/values.yaml
+0
-3
No files found.
test/minio/8.0.5/README.md
View file @
993b6e35
...
...
@@ -136,7 +136,6 @@ The following table lists the configurable parameters of the MinIO chart and the
|
`image.repository`
| Image repository |
`minio/minio`
|
|
`image.tag`
| MinIO image tag. Possible values listed
[
here
](
https://hub.docker.com/r/minio/minio/tags/
)
. |
`RELEASE.2020-11-06T23-17-07Z`
|
|
`image.pullPolicy`
| Image pull policy |
`IfNotPresent`
|
|
`imagePullSecrets`
| List of container registry secrets |
`[]`
|
|
`trustedCertsSecret`
| Kubernetes secret with trusted certificates to be mounted on
`{{ .Values.certsPath }}/CAs`
|
`""`
|
|
`mode`
| MinIO server mode (
`standalone`
or
`distributed`
) |
`standalone`
|
|
`extraArgs`
| Additional command line arguments to pass to the MinIO server |
`[]`
|
...
...
test/minio/8.0.5/templates/_helpers.tpl
View file @
993b6e35
...
...
@@ -102,31 +102,6 @@ Properly format optional additional arguments to Minio binary
{{
-
end
-
}}
{{
-
end
-
}}
{
{
/*
Return
the
proper
Docker
Image
Registry
Secret
Names
*/
}
}
{{
-
define
"
minio
.
imagePullSecrets
"
-
}}
{
{
/*
Helm
2.11
supports
the
assignment
of
a
value
to
a
variable
defined
in
a
different
scope
,
but
Helm
2.9
and
2.10
does
not
support
it
,
so
we
need
to
implement
this
if
-
else
logic
.
Also
,
we
can
not
use
a
single
if
because
lazy
evaluation
is
not
an
option
*/
}
}
{{
-
if
.
Values
.
global
}}
{{
-
if
.
Values
.
global
.
imagePullSecrets
}}
imagePullSecrets:
{{
-
range
.
Values
.
global
.
imagePullSecrets
}}
-
name:
{{
.
}}
{{
-
end
}}
{{
-
else
if
.
Values
.
imagePullSecrets
}}
imagePullSecrets:
{{
toYaml
.
Values
.
imagePullSecrets
}}
{{
-
end
-
}}
{{
-
else
if
.
Values
.
imagePullSecrets
}}
imagePullSecrets:
{{
toYaml
.
Values
.
imagePullSecrets
}}
{{
-
end
-
}}
{{
-
end
-
}}
{
{
/*
Formats
volumeMount
for
Minio
tls
keys
and
trusted
certs
*/
}
}
...
...
test/minio/8.0.5/templates/deployment.yaml
View file @
993b6e35
...
...
@@ -92,7 +92,6 @@ spec:
nodeSelector
:
{{
toYaml . | indent 8
}}
{{
- end
}}
{{
- include "minio.imagePullSecrets" . | indent 6
}}
{{
- with .Values.affinity
}}
affinity
:
{{
toYaml . | indent 8
}}
...
...
test/minio/8.0.5/templates/post-install-create-bucket-job.yaml
View file @
993b6e35
...
...
@@ -22,7 +22,6 @@ spec:
{{
- end
}}
spec
:
restartPolicy
:
OnFailure
{{
- include "minio.imagePullSecrets" . | indent 6
}}
{{
- if .Values.nodeSelector
}}
nodeSelector
:
{{
toYaml .Values.nodeSelector | indent 8
}}
...
...
test/minio/8.0.5/templates/statefulset.yaml
View file @
993b6e35
...
...
@@ -129,7 +129,6 @@ spec:
nodeSelector
:
{{
toYaml . | indent 8
}}
{{
- end
}}
{{
- include "minio.imagePullSecrets" . | indent 6
}}
{{
- with .Values.affinity
}}
affinity
:
{{
toYaml . | indent 8
}}
...
...
test/minio/8.0.5/values.yaml
View file @
993b6e35
...
...
@@ -157,9 +157,6 @@ service:
# prometheus.io/path: '/minio/prometheus/metrics'
# prometheus.io/port: '9000'
imagePullSecrets
:
[]
# - name: "image-pull-secret"
## Node labels for pod assignment
## Ref: https://kubernetes.io/docs/user-guide/node-selection/
##
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment