64 lines
2.4 KiB
YAML
64 lines
2.4 KiB
YAML
- name: Setup container registry
|
|
hosts: "{{ target_host }}"
|
|
|
|
environment:
|
|
PATH: "{{ ansible_env.PATH }}:/home/{{ansible_user}}/bin"
|
|
|
|
vars_files:
|
|
- k8s-vars.yml
|
|
- container-vars.yml
|
|
|
|
tasks:
|
|
- name: Generate the spec file for the container-registry stack
|
|
template:
|
|
src: "./templates/container-registry.spec.j2"
|
|
dest: "{{ansible_env.HOME}}/container-registry.spec"
|
|
|
|
- name: Create a deployment for the container-registry stack
|
|
command: laconic-so --stack container-registry deploy create --deployment-dir container-registry --spec-file container-registry.spec
|
|
|
|
- name: Base64 encode the container registry credentials
|
|
set_fact:
|
|
b64_encoded_cred: "{{ (container_registry_username + ':' + container_registry_password) | b64encode }}"
|
|
|
|
- name: Encrypt the container registry credentials to create an htpasswd file
|
|
command: >
|
|
htpasswd -bB -c container-registry/configmaps/config/htpasswd
|
|
{{ container_registry_username }} {{ container_registry_password }}
|
|
register: htpasswd_file
|
|
|
|
- name: Read the htpasswd file
|
|
slurp:
|
|
src: "container-registry/configmaps/config/htpasswd"
|
|
register: htpasswd_file_content
|
|
|
|
- name: Extract the hashed password (after the colon)
|
|
set_fact:
|
|
hashed_password: "{{ (htpasswd_file_content.content | b64decode).split(':')[1] | trim }}"
|
|
|
|
- name: Create container-registry/my_password.json file
|
|
template:
|
|
src: "./templates/my_password.json.j2"
|
|
dest: "container-registry/my_password.json"
|
|
|
|
- name: Configure the file container-registry/config.env
|
|
copy:
|
|
dest: "container-registry/config.env"
|
|
content: |
|
|
REGISTRY_AUTH=htpasswd
|
|
REGISTRY_AUTH_HTPASSWD_REALM="{{org_id}} Service Provider Image Registry"
|
|
REGISTRY_AUTH_HTPASSWD_PATH="/config/htpasswd"
|
|
REGISTRY_HTTP_SECRET='{{ hashed_password }}'
|
|
|
|
- name: Add the container registry credentials as a secret available to the cluster
|
|
command: >
|
|
kubectl create secret generic laconic-registry
|
|
--from-file=.dockerconfigjson=container-registry/my_password.json
|
|
--type=kubernetes.io/dockerconfigjson
|
|
environment:
|
|
KUBECONFIG: "{{ ansible_env.HOME }}/.kube/config-default.yaml"
|
|
|
|
- name: Deploy the container registry
|
|
command: >
|
|
laconic-so deployment --dir container-registry start
|