{{ secretTitle }} Kubernetes Secret rkt Configuration Docker Login Docker Configuration Mesos Credentials

Credentials for {{ credentials.title || credentials.username }}

Username is {{ credentials.username }} and password is the {{ secretTitle }}
First, download the Kubernetes pull secret for the {{ entityTitle }}:
  • Download {{ getKubernetesFilename(credentials) }}
  • View {{ getKubernetesFilename(credentials) }}
Second, submit the secret to the cluster using this command:
Finally, add a reference to the secret to your Kuberenetes pod config via an imagePullSecrets field. For example:
apiVersion: v1
kind: Pod
metadata:
  name: somepod
  namespace: all
spec:
  containers:
    - name: web
      image: {{ Config.SERVER_HOSTNAME }}/{{ getNamespace(credentials) }}/somerepo
  
  imagePullSecrets:
    - name: {{ getKubernetesSecretName(credentials) }}
First, download the Docker credentials file as a bundle:
  • Download {{ getMesosFilename(credentials) }}
Second, copy the credentials bundle file {{ getMesosFilename(credentials) }} into a location accessible to Mesos:
Finally, add a reference to the bundle to your Mesos config via a uris field. For example:
{
  "id": "/some/name/or/id",
  "cpus": 1,
  "mem": 1024,
  "instances": 1,
  "container": {
    "type": "DOCKER",
    "docker": {
      "image": "{{ Config.SERVER_HOSTNAME }}/{{ getNamespace(credentials) }}/somerepo",
      "network": "HOST"
    }
  },
  
  "uris":  [
      "file:///etc/{{ getMesosFilename(credentials) }}"
  ]
}
First, download the rkt credentials file for the {{ entityTitle }}:
  • Download {{ getRktFilename(credentials) }}
  • View {{ getRktFilename(credentials) }}
Second, place the file in the rkt configuration directory:
Enter the following command on the command line:
First, download the Docker credentials file for the {{ entityTitle }}:
  • Download {{ getDockerFilename(credentials) }}
  • View {{ getDockerFilename(credentials) }}
Second, place the file in the Docker configuration directory. Note: This will overwrite existing credentials: