Do not perform any operation on the following secrets. For details, see Cluster Secrets.
The following example shows how to use a secret.
apiVersion: v1 kind: Secret metadata: name: mysecret type: Opaque data: username: ****** #The value must be Base64-encoded. password: ****** #The value must be encoded using Base64.
However, when a secret data volume mounted in subPath mode is updated, Kubernetes cannot automatically update the data in the data volume.
Using the console
When creating a workload, click Environment Variables in the Container Settings area, and click .
For example, after you import the value of username in secret mysecret as the value of workload environment variable username, an environment variable named username exists in the container.
After the workload runs properly, access the container and run the following command to check whether the secret has been set as an environment variable of the workload:
printenv username
If the output is the same as that in the secret, the secret has been set as an environment variable of the workload.
Using kubectl
vi nginx-secret.yaml
Content of the YAML file:
apiVersion: apps/v1
kind: Deployment
metadata:
name: nginx-secret
spec:
replicas: 1
selector:
matchLabels:
app: nginx-secret
template:
metadata:
labels:
app: nginx-secret
spec:
containers:
- name: container-1
image: nginx:latest
envFrom: # Use envFrom to specify a secret to be referenced by environment variables.
- secretRef:
name: mysecret # Name of the referenced secret.
imagePullSecrets:
- name: default-secret
apiVersion: apps/v1 kind: Deployment metadata: name: nginx-secret spec: replicas: 1 selector: matchLabels: app: nginx-secret template: metadata: labels: app: nginx-secret spec: containers: - name: container-1 image: nginx:latest env: # Set environment variables in the workload. - name: SECRET_USERNAME # Name of the environment variable in the workload. valueFrom: # Use envFrom to specify a secret to be referenced by environment variables. secretKeyRef: name: mysecret # Name of the referenced secret. key: username # Name of the referenced key. - name: SECRET_PASSWORD # Add multiple environment variables. Multiple environment variables can be imported at the same time. valueFrom: secretKeyRef: name: mysecret key: password imagePullSecrets: - name: default-secret
kubectl apply -f nginx-secret.yaml
kubectl get pod | grep nginx-secret
nginx-secret-*** 1/1 Running 0 2m18s
kubectl exec nginx-secret-*** -- printenv SPECIAL_USERNAME SPECIAL_PASSWORD
If the output is the same as that in the secret, the secret has been set as an environment variable of the workload.
You can mount a secret as a volume to the specified container path. Contents in a secret are user-defined. Before that, you need to create a secret. For details, see Creating a Secret.
Using the console
When creating a workload, click Data Storage in the Container Settings area. Click Add Volume and select Secret from the drop-down list.
Parameter |
Description |
---|---|
Secret |
Select the desired secret name. A secret must be created in advance. For details, see Creating a Secret. |
Add Container Path |
Configure the following parameters:
You can click |
Using kubectl
vi nginx-secret.yaml
apiVersion: apps/v1 kind: Deployment metadata: name: nginx-secret spec: replicas: 1 selector: matchLabels: app: nginx-secret template: metadata: labels: app: nginx-secret spec: containers: - name: container-1 image: nginx:latest volumeMounts: - name: foo mountPath: /etc/foo # Mount to the /etc/foo directory. readOnly: true volumes: - name: foo secret: secretName: mysecret # Name of the referenced secret.
apiVersion: apps/v1 kind: Deployment metadata: name: nginx-secret spec: replicas: 1 selector: matchLabels: app: nginx-secret template: metadata: labels: app: nginx-secret spec: containers: - name: container-1 image: nginx:latest volumeMounts: - name: foo mountPath: /etc/foo # Mount to the /etc/foo directory. readOnly: true volumes: - name: foo secret: secretName: mysecret # Name of the referenced secret. items: - key: username # Name of the referenced key. path: my-group/my-username # Mapping path of the secret key.
kubectl apply -f nginx-secret.yaml
kubectl get pod | grep nginx-secret
nginx-secret-*** 1/1 Running 0 2m18s
kubectl exec nginx-secret-*** -- /etc/foo/username
The expected output is the same as that in the secret.