proposalbot 85e1a6ed92 Changes to cce_umn from docs/doc-exports#770 (Added the support of the OS for fe
Reviewed-by: Eotvos, Oliver <oliver.eotvos@t-systems.com>
Co-authored-by: proposalbot <proposalbot@otc-service.com>
Co-committed-by: proposalbot <proposalbot@otc-service.com>
2023-06-20 14:44:25 +00:00

25 KiB

original_name

cce_10_0016.html

Using a Secret

Important

Do not perform any operation on the following secrets. For details, see Cluster Secrets <cce_10_0388>.

  • Do not operate secrets under kube-system.
  • Do not operate default-secret and paas.elb in any of the namespaces. The default-secret is used to pull the private image of SWR, and the paas.elb is used to connect the service in the namespace to the ELB service.
  • Setting Environment Variables of a Workload <cce_10_0016__section207271352141216>
  • Configuring the Data Volume of a Workload <cce_10_0016__section472505211214>

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.

Important

  • When a secret is used in a pod, the pod and secret must be in the same cluster and namespace.

  • When a secret is updated, Kubernetes updates the data in the data volume at the same time.

    However, when a secret data volume mounted in subPath mode is updated, Kubernetes cannot automatically update the data in the data volume.

Setting Environment Variables of a Workload

Using the console

  1. Log in to the CCE console and access the cluster console.

  2. In the navigation pane, choose Workloads. Then, click Create Workload.

    When creating a workload, click Environment Variables in the Container Settings area, and click image1.

    • Added from secret: Select a secret and import all keys in the secret as environment variables.

    • Added from secret key: Import the value of a key in a secret as the value of an environment variable.

      • Variable Name: name of an environment variable in the workload. The name can be customized and is set to the key name selected in the secret by default.
      • Variable Value/Reference: Select a secret and the key to be imported. The corresponding value is imported as a workload environment variable.

      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.

  3. Configure other workload parameters and click Create Workload.

    After the workload runs properly, access the container <cce_10_00356> 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

  1. According to Connecting to a Cluster Using kubectl <cce_10_0107>, configure the kubectl command to connect an ECS to the cluster.

  2. Create a file named nginx-secret.yaml and edit it.

    vi nginx-secret.yaml

    Content of the YAML file:

    • Added from a secret: To add all data in a secret to environment variables, use the envFrom parameter. The keys in the ConfigMap will become names of environment variables in a workload.

      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
    • Added from a secret key: When creating a workload, you can set a secret to set environment variables and use the valueFrom parameter to reference the key-value pair in the secret separately.

      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
  3. Create a workload.

    kubectl apply -f nginx-secret.yaml

  4. View the environment variables in the pod.

    1. Run the following command to view the created pod:

      kubectl get pod | grep nginx-secret

      Expected output:

      nginx-secret-***   1/1     Running   0              2m18s
    2. Run the following command to view the environment variables in the pod:

      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.

Configuring the Data Volume of a 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 <cce_10_0153>.

Using the console

  1. Log in to the CCE console and access the cluster console.

  2. In the navigation pane on the left, click Workloads. In the right pane, click the Deployments tab. Click Create Workload in the upper right corner.

    When creating a workload, click Data Storage in the Container Settings area. Click Add Volume and select Secret from the drop-down list.

  3. Set the local volume type to Secret and set parameters for adding a local volume, as shown in Table 1 <cce_10_0016__table861818920109>.

    Table 1 Secret
    Parameter Description
    Secret

    Select the desired secret name.

    A secret must be created in advance. For details, see Creating a Secret <cce_10_0153>.

    Add Container Path

    Configure the following parameters:

    1. Container Path: Enter the path of the container, for example, /tmp.

      This parameter indicates the container path to which a data volume will be mounted. Do not mount the volume to a system directory such as / or /var/run; this action may cause container errors. You are advised to mount the container to an empty directory. If the directory is not empty, ensure that there are no files affecting container startup in the directory. Otherwise, such files will be replaced, resulting in failures to start the container and create the workload.

      Important

      NOTICE: When the container is mounted to a high-risk directory, you are advised to use an account with minimum permissions to start the container; otherwise, high-risk files on the host machine may be damaged.

    2. subPath: Enter a subpath, for example, tmp.

      • A subpath is used to mount a local volume so that the same data volume is used in a single pod.
      • The subpath can be the key and value of a ConfigMap or secret. If the subpath is a key-value pair that does not exist, the data import does not take effect.
      • The data imported by specifying a subpath will not be updated along with the ConfigMap/secret updates.
    3. Set the permission to Read-only. Data volumes in the path are read-only.

    You can click image2 to add multiple paths and subpaths.

Using kubectl

  1. According to Connecting to a Cluster Using kubectl <cce_10_0107>, configure the kubectl command to connect an ECS to the cluster.

  2. Create a file named nginx-secret.yaml and edit it.

    vi nginx-secret.yaml

    In the following example, the username and password in the mysecret secret are saved in the /etc/foo directory as files.

    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.

    You can also use the items field to control the mapping path of the secret key. For example, store the username is stored in the /etc/foo/my-group/my-username directory of the container.

    Note

    • After the items field is used to specify the mapping path of the secret key, the keys that are not specified will not be created as files. For example, if the password key in the following example is not specified, the file will not be created.
    • If you want to use all keys in a secret, you must list all keys in the items field.
    • All keys listed in the items field must exist in the corresponding secret. Otherwise, the volume is not created.
    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.
  3. Create a workload.

    kubectl apply -f nginx-secret.yaml

  4. After the workload runs properly, the username and password files are generated in the /etc/foo directory.

    1. Run the following command to view the created pod:

      kubectl get pod | grep nginx-secret

      Expected output:

      nginx-secret-***   1/1     Running   0              2m18s
    2. Run the following command to view the username or password file in the pod:

      kubectl exec nginx-secret-*** -- /etc/foo/username

      The expected output is the same as that in the secret.