Replace nexus with docker-repo
This commit is contained in:
parent
1e45532183
commit
38b2f1c661
10 changed files with 117 additions and 188 deletions
5
ansible/playbooks/docker-repo.yml
Normal file
5
ansible/playbooks/docker-repo.yml
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
- hosts: docker-repo
|
||||||
|
roles:
|
||||||
|
- role: docker-repo
|
||||||
|
...
|
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
- hosts: nexus
|
|
||||||
roles:
|
|
||||||
- role: nexus
|
|
||||||
...
|
|
|
@ -6,7 +6,7 @@
|
||||||
- import_playbook: docker.yml
|
- import_playbook: docker.yml
|
||||||
- import_playbook: nomad.yml
|
- import_playbook: nomad.yml
|
||||||
- import_playbook: k3s.yml
|
- import_playbook: k3s.yml
|
||||||
- import_playbook: nexus.yml
|
- import_playbook: docker-repo.yml
|
||||||
- import_playbook: lnd.yml
|
- import_playbook: lnd.yml
|
||||||
- import_playbook: wekan.yml
|
- import_playbook: wekan.yml
|
||||||
- import_playbook: haproxy.yml
|
- import_playbook: haproxy.yml
|
||||||
|
|
2
ansible/roles/docker-repo/defaults/main.yml
Normal file
2
ansible/roles/docker-repo/defaults/main.yml
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
---
|
||||||
|
docker_repo_storage: /mnt/raid/docker-repo
|
12
ansible/roles/docker-repo/files/docker-repo.hcl
Normal file
12
ansible/roles/docker-repo/files/docker-repo.hcl
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
services {
|
||||||
|
id = "docker-repo"
|
||||||
|
name = "docker-repo"
|
||||||
|
port = 5000
|
||||||
|
checks = [
|
||||||
|
{
|
||||||
|
args = ["nc", "-z", "-v", "localhost", "5000"]
|
||||||
|
interval = "5s"
|
||||||
|
timeout = "20s"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -4,8 +4,8 @@
|
||||||
name: consul
|
name: consul
|
||||||
state: reloaded
|
state: reloaded
|
||||||
|
|
||||||
- name: restart nexus
|
- name: restart docker
|
||||||
docker_container:
|
docker_container:
|
||||||
name: nexus
|
name: docker-repo
|
||||||
image: sonatype/nexus3
|
image: registry:2
|
||||||
restart: True
|
restart: True
|
94
ansible/roles/docker-repo/tasks/main.yml
Normal file
94
ansible/roles/docker-repo/tasks/main.yml
Normal file
|
@ -0,0 +1,94 @@
|
||||||
|
---
|
||||||
|
- name: ensure docker repo cert directory exists
|
||||||
|
file:
|
||||||
|
path: /etc/docker-repo/certs
|
||||||
|
recurse: True
|
||||||
|
state: directory
|
||||||
|
owner: root
|
||||||
|
group: root
|
||||||
|
mode: 0755
|
||||||
|
|
||||||
|
- name: ensure docker data directory exists
|
||||||
|
file:
|
||||||
|
path: '{{ docker_repo_storage }}'
|
||||||
|
recurse: True
|
||||||
|
state: directory
|
||||||
|
owner: root
|
||||||
|
group: root
|
||||||
|
mode: 0755
|
||||||
|
|
||||||
|
- name: check if server cert is expiring in the next 5 days
|
||||||
|
shell: "openssl x509 -checkend 432000 -noout -in /etc/docker-repo/certs/docker-repo.crt"
|
||||||
|
args:
|
||||||
|
executable: /bin/bash
|
||||||
|
failed_when: False
|
||||||
|
check_mode: False
|
||||||
|
changed_when: False
|
||||||
|
register: exp
|
||||||
|
|
||||||
|
- name: get cert
|
||||||
|
shell: "vault write pki_int/issue/{{ vault_pki_policy }} common_name=docker-repo.service.{{ consul_domain }} alt_names=docker-repo.service.{{ main_dc_name }}.{{ consul_domain }} ttl=43200m"
|
||||||
|
args:
|
||||||
|
executable: /bin/bash
|
||||||
|
environment:
|
||||||
|
VAULT_ADDR: https://vault.service.masked.name:8200
|
||||||
|
VAULT_TOKEN: "{{ lookup('file', lookup('env', 'HOME') + '/.vault-token') }}"
|
||||||
|
VAULT_FORMAT: json
|
||||||
|
register: cert_data
|
||||||
|
when: exp.rc != 0
|
||||||
|
|
||||||
|
- name: write cert data to server
|
||||||
|
copy:
|
||||||
|
content: "{{ item.content }}"
|
||||||
|
dest: "/etc/docker-repo/{{ item.path }}"
|
||||||
|
mode: '{{ item.mode }}'
|
||||||
|
owner: root
|
||||||
|
group: root
|
||||||
|
when: cert_data.changed
|
||||||
|
register: cert_written
|
||||||
|
loop:
|
||||||
|
- {
|
||||||
|
content: "{{ (cert_data.stdout | from_json).data.certificate }}",
|
||||||
|
path: "certs/docker-repo.crt",
|
||||||
|
mode: "0755"
|
||||||
|
}
|
||||||
|
- {
|
||||||
|
content: "{{ (cert_data.stdout | from_json).data.private_key }}",
|
||||||
|
path: "certs/docker-repo.key",
|
||||||
|
mode: "0600"
|
||||||
|
}
|
||||||
|
|
||||||
|
- name: ensure python-docker is installed
|
||||||
|
apt:
|
||||||
|
name: python3-docker
|
||||||
|
state: present
|
||||||
|
|
||||||
|
- name: ensure docker repo data dir exists
|
||||||
|
file:
|
||||||
|
path: "{{ docker_repo_storage }}"
|
||||||
|
state: directory
|
||||||
|
mode: 0755
|
||||||
|
|
||||||
|
- name: run docker-repo
|
||||||
|
docker_container:
|
||||||
|
name: docker-repo
|
||||||
|
image: registry:2
|
||||||
|
env:
|
||||||
|
REGISTRY_HTTP_TLS_CERTIFICATE: /certs/docker-repo.crt
|
||||||
|
REGISTRY_HTTP_TLS_KEY: /certs/docker-repo.key
|
||||||
|
ports:
|
||||||
|
- "5000:5000"
|
||||||
|
volumes:
|
||||||
|
- "{{ docker_repo_storage }}:/data"
|
||||||
|
- "/etc/docker-repo/certs:/certs"
|
||||||
|
restart_policy: always
|
||||||
|
|
||||||
|
- name: ensure docker repo service config exists
|
||||||
|
copy:
|
||||||
|
src: files/docker-repo.hcl
|
||||||
|
dest: /etc/consul.d/docker-repo.hcl
|
||||||
|
mode: 0750
|
||||||
|
owner: consul
|
||||||
|
group: consul
|
||||||
|
notify: reload consul
|
||||||
|
...
|
|
@ -1,24 +0,0 @@
|
||||||
services {
|
|
||||||
id = "nexus"
|
|
||||||
name = "nexus"
|
|
||||||
port = 8081
|
|
||||||
checks = [
|
|
||||||
{
|
|
||||||
args = ["nc", "-z", "-v", "localhost", "8081"]
|
|
||||||
interval = "5s"
|
|
||||||
timeout = "20s"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
services {
|
|
||||||
id = "docker"
|
|
||||||
name = "docker"
|
|
||||||
port = 8082
|
|
||||||
checks = [
|
|
||||||
{
|
|
||||||
args = ["nc", "-z", "-v", "localhost", "8082"]
|
|
||||||
interval = "5s"
|
|
||||||
timeout = "20s"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
|
@ -1,12 +0,0 @@
|
||||||
# Jetty section
|
|
||||||
application-port-ssl=8081
|
|
||||||
application-host=0.0.0.0
|
|
||||||
nexus-args=${jetty.etc}/jetty.xml,${jetty.etc}/jetty-https.xml,${jetty.etc}/jetty-requestlog.xml
|
|
||||||
ssl.etc=/opt/sonatype/nexus/etc/ssl/
|
|
||||||
# nexus-context-path=/${NEXUS_CONTEXT}
|
|
||||||
|
|
||||||
# Nexus section
|
|
||||||
# nexus-edition=nexus-pro-edition
|
|
||||||
# nexus-features=\
|
|
||||||
# nexus-pro-feature
|
|
||||||
# nexus.clustered=false
|
|
|
@ -1,143 +0,0 @@
|
||||||
---
|
|
||||||
- name: ensure pexpect exists
|
|
||||||
pip:
|
|
||||||
name: pexpect
|
|
||||||
state: present
|
|
||||||
|
|
||||||
- name: check if server cert is expiring in the next 5 days
|
|
||||||
shell: "openssl x509 -checkend 432000 -noout -in /etc/pki/certs/nexus.crt"
|
|
||||||
args:
|
|
||||||
executable: /bin/bash
|
|
||||||
failed_when: False
|
|
||||||
check_mode: False
|
|
||||||
changed_when: False
|
|
||||||
register: exp
|
|
||||||
|
|
||||||
- name: get cert
|
|
||||||
shell: "vault write pki_int/issue/{{ vault_pki_policy }} common_name=nexus.service.{{ consul_domain }} alt_names=nexus.service.{{ main_dc_name }}.{{ consul_domain }},docker.service.{{ consul_domain }},docker.service.{{ main_dc_name }}.{{ consul_domain }} ttl=43200m"
|
|
||||||
args:
|
|
||||||
executable: /bin/bash
|
|
||||||
environment:
|
|
||||||
VAULT_ADDR: https://vault.service.masked.name:8200
|
|
||||||
VAULT_TOKEN: "{{ lookup('file', lookup('env', 'HOME') + '/.vault-token') }}"
|
|
||||||
VAULT_FORMAT: json
|
|
||||||
register: cert_data
|
|
||||||
when: exp.rc != 0
|
|
||||||
|
|
||||||
- name: write cert data to server
|
|
||||||
copy:
|
|
||||||
content: "{{ item.content }}"
|
|
||||||
dest: "/etc/pki/{{ item.path }}"
|
|
||||||
mode: '{{ item.mode }}'
|
|
||||||
owner: root
|
|
||||||
group: root
|
|
||||||
when: cert_data.changed
|
|
||||||
register: cert_written
|
|
||||||
loop:
|
|
||||||
- {
|
|
||||||
content: "{{ (cert_data.stdout | from_json).data.certificate }}",
|
|
||||||
path: "certs/nexus.crt",
|
|
||||||
mode: "0755"
|
|
||||||
}
|
|
||||||
- {
|
|
||||||
content: "{{ (cert_data.stdout | from_json).data.private_key }}",
|
|
||||||
path: "keys/nexus.key",
|
|
||||||
mode: "0600"
|
|
||||||
}
|
|
||||||
|
|
||||||
# I hate this
|
|
||||||
- name: create cert for keystore
|
|
||||||
shell: for i in nexus.crt MaskedName_Root_CA.pem; do (cat "/etc/pki/certs/${i}"; echo) >> /tmp/keystore.crt; done
|
|
||||||
args:
|
|
||||||
executable: /bin/bash
|
|
||||||
when: cert_written.changed
|
|
||||||
|
|
||||||
- name: write keystore
|
|
||||||
expect:
|
|
||||||
command: "openssl pkcs12 -inkey /etc/pki/keys/nexus.key -in /tmp/keystore.crt -export -out {{ nexus_config_dir }}/etc/ssl/keystore.jks"
|
|
||||||
responses:
|
|
||||||
Enter Export Password:
|
|
||||||
- password
|
|
||||||
Verifying - Enter Export Password:
|
|
||||||
- password
|
|
||||||
when: cert_written.changed
|
|
||||||
notify: restart nexus
|
|
||||||
|
|
||||||
- name: remove tmp keystore
|
|
||||||
file:
|
|
||||||
path: /tmp/keystore.crt
|
|
||||||
state: absent
|
|
||||||
when: cert_written.changed
|
|
||||||
|
|
||||||
- name: ensure python-docker is installed
|
|
||||||
apt:
|
|
||||||
name: python3-docker
|
|
||||||
state: present
|
|
||||||
|
|
||||||
- name: ensure nexus group exists
|
|
||||||
group:
|
|
||||||
name: nexus
|
|
||||||
state: present
|
|
||||||
gid: 200
|
|
||||||
|
|
||||||
- name: ensure nexus user exists
|
|
||||||
user:
|
|
||||||
name: nexus
|
|
||||||
group: nexus
|
|
||||||
uid: 200
|
|
||||||
create_home: False
|
|
||||||
|
|
||||||
- name: ensure nexus data dir exists
|
|
||||||
file:
|
|
||||||
path: "{{ nexus_storage }}"
|
|
||||||
state: directory
|
|
||||||
owner: nexus
|
|
||||||
group: nexus
|
|
||||||
mode: 0755
|
|
||||||
|
|
||||||
- name: ensure nexus data dir exists
|
|
||||||
file:
|
|
||||||
path: "{{ nexus_config_dir }}"
|
|
||||||
state: directory
|
|
||||||
owner: nexus
|
|
||||||
group: nexus
|
|
||||||
mode: 0755
|
|
||||||
|
|
||||||
- name: ensure nexus keystore dir exists
|
|
||||||
file:
|
|
||||||
path: "{{ nexus_config_dir }}/etc/ssl/"
|
|
||||||
state: directory
|
|
||||||
owner: nexus
|
|
||||||
group: nexus
|
|
||||||
mode: 0755
|
|
||||||
|
|
||||||
- name: copy nexus.properties
|
|
||||||
copy:
|
|
||||||
src: files/nexus.properties
|
|
||||||
dest: "{{ nexus_storage }}/etc/nexus.properties"
|
|
||||||
|
|
||||||
- name: run nexus3
|
|
||||||
docker_container:
|
|
||||||
name: nexus
|
|
||||||
image: sonatype/nexus3:latest
|
|
||||||
env:
|
|
||||||
REGISTRY_HTTP_TLS_CERTIFICATE: /certs/nexus.crt
|
|
||||||
REGISTRY_HTTP_TLS_KEY: /certs/nexus.key
|
|
||||||
REGISTRY_HTTP_SECRET: "{{ lookup('hashi_vault', 'secret=kv/data/nexus:data')['REGISTRY_HTTP_SECRET'] }}"
|
|
||||||
ports:
|
|
||||||
- "8081:8081"
|
|
||||||
- "8082:8082"
|
|
||||||
volumes:
|
|
||||||
- "{{ nexus_storage }}:/nexus-data"
|
|
||||||
- "{{ nexus_config_dir }}/etc/ssl:/opt/sonatype/nexus/etc/ssl/"
|
|
||||||
restart_policy: always
|
|
||||||
|
|
||||||
- name: ensure nexus consul service config exists
|
|
||||||
copy:
|
|
||||||
src: files/nexus.hcl
|
|
||||||
dest: /etc/consul.d/nexus.hcl
|
|
||||||
mode: 0750
|
|
||||||
owner: consul
|
|
||||||
group: consul
|
|
||||||
notify: reload consul
|
|
||||||
...
|
|
Loading…
Reference in a new issue