By applying this change the kubernetes cluster gets a gitea-server setup. Note, that I use a custom-image which I have to automate in future. The customization is necessary since I use asciidoc very often and the default-gitea doesn't render these files, so it becomes a bit cumbersome to read them on the web.
38 lines
1.3 KiB
YAML
38 lines
1.3 KiB
YAML
all:
|
|
vars:
|
|
api_endpoint: "{{ hostvars[groups['server'][0]]['ansible_host'] | default(groups['server'][0]) }}"
|
|
cert_manager_state: present
|
|
cert_manager_version: v1.18.2
|
|
letsencrypt_clusterissuers:
|
|
staging:
|
|
server: https://acme-staging-v02.api.letsencrypt.org/directory
|
|
email: "{{ vault_letsencrypt_issuer_email }}"
|
|
prod:
|
|
server: https://acme-v02.api.letsencrypt.org/directory
|
|
email: "{{ vault_letsencrypt_issuer_email }}"
|
|
gitea_chart_version: 12.3.0
|
|
gitea_state: present
|
|
gitea_host: gitea.nehrke.info
|
|
gitea_certificate_issuer: letsencrypt-prod
|
|
gitea_image_pull_policy: Always
|
|
gitea_image_registry_secret: "{{ vault_gitea_pull_registry_secret | b64encode }}"
|
|
gitea_admin_user: "{{ vault_gitea_admin_user }}"
|
|
gitea_admin_password: "{{ vault_gitea_admin_password }}"
|
|
gitea_admin_email: "{{ vault_gitea_admin_email }}"
|
|
|
|
k3s_cluster:
|
|
vars:
|
|
ansible_user: root
|
|
# note the space between the IPs!
|
|
dns_servers: 8.8.8.8 8.8.4.4
|
|
|
|
agent:
|
|
vars:
|
|
ansible_ssh_common_args: -o StrictHostKeyChecking=accept-new -o ProxyCommand="ssh -p {{ hostvars[groups['server'][0]]['ansible_port'] }} -W %h:%p -q root@{{ api_endpoint }}"
|
|
k3s_version: v1.31.6+k3s1
|
|
|
|
server:
|
|
vars:
|
|
ansible_ssh_common_args: '-o StrictHostKeyChecking=accept-new'
|
|
k3s_version: v1.31.6+k3s1
|