gabibbo97/pullsecret
Chart version: 0.1.2
Api version: v2
App version: 1.0
Image pull secrets
application
Chart Type
DEPRECATED
Status
Unknown
License
506
Downloads
https://gabibbo97.github.io/charts
Set me up:
helm repo add center https://repo.chartcenter.io
Install Chart:
helm install pullsecret center/gabibbo97/pullsecret
Versions (0)
View all
Pullsecret
This is an utility chart that allows deploying a pullsecret.
It is not very useful by himself but can be leveraged as a dependency
TL;DR
helm install gabibbo97/pullsecret \
--set secretName=my-pull-secret \
--set registryURL=http://registry.example.com:5000 \
--set registryUsername=testUser \
--set registryPassword=testPass
Configuration options
Parameter | Description | Default |
---|---|---|
secretName |
The secret name | “ |
registryURL |
URL of the registry | https://index.docker.io/v1/ |
registryUsername |
Registry username | ” |
registryPassword |
Registry password | “ |
registryEmail |
(Optional) Registry email | ” |
How to use the pullsecret
In a Pod
apiVersion: v1
kind: Pod
...
spec:
...
imagePullSecrets:
- name: <<secretName>>
...
In a ServiceAccount
apiVersion: v1
kind: ServiceAccount
...
imagePullSecrets:
- name: <<secretName>>
...