161 lines
4.3 KiB
YAML
161 lines
4.3 KiB
YAML
---
|
|
# provisioning services in k3s cluster
|
|
|
|
# mount gluster
|
|
#- include_tasks: gluster.fstab.yml
|
|
#
|
|
## add helm repositories
|
|
#- include_tasks: add_repos.yml
|
|
#
|
|
- name: deploy hello-world
|
|
include_tasks: deployments/hello-world.yaml
|
|
when: apps.hello_world.enabled
|
|
|
|
- name: deploy cert_manager
|
|
include_tasks: cert_manager.yml
|
|
when: apps.cert_manager.enabled
|
|
|
|
- name: deploy stash
|
|
include_tasks: deployments/stash.yaml
|
|
when: apps.stash.enabled
|
|
|
|
- name: deploy mariadb
|
|
include_tasks: deployments/mariadb.yaml
|
|
when: apps.mariadb.enabled
|
|
|
|
- name: deploy postgresql
|
|
include_tasks: deployments/postgresql.yaml
|
|
when: apps.postgres.enabled
|
|
|
|
- name: deploy gitea
|
|
include_tasks: deployments/gitea.yaml
|
|
when: apps.gitea.enabled
|
|
|
|
- name: deploy dkregistry
|
|
include_tasks: deployments/dkregistry.yaml
|
|
when: apps.dkregistry.enabled
|
|
|
|
- name: deploy nextcloud
|
|
include_tasks: deployments/nextcloud.yaml
|
|
when: apps.nextcloud.enabled
|
|
|
|
- name: deploy redis
|
|
include_tasks: deployments/redis.yaml
|
|
when: apps.redis.enabled
|
|
|
|
- name: deploy funkwhale
|
|
include_tasks: deployments/funkwhale.yaml
|
|
when: apps.funkwhale.enabled
|
|
|
|
- name: deploy abcmusic
|
|
include_tasks: deployments/abcmusic.yaml
|
|
when: apps.abcmusic.enabled
|
|
|
|
- name: deploy backstage
|
|
include_tasks: deployments/backstage.yaml
|
|
when: apps.backstage.enabled
|
|
|
|
- name: deploy pixelfed
|
|
include_tasks: deployments/pixelfed.yaml
|
|
when: apps.pixelfed.enabled
|
|
|
|
#- name: deploy metallb
|
|
# include_tasks: deployments/metallb.yaml
|
|
# when: apps.metallb.enabled
|
|
|
|
|
|
#-----------------------------------------------------
|
|
#- include_tasks: mariadb.yaml
|
|
#
|
|
# https://artifacthub.io/packages/helm/twuni/docker-registry
|
|
#- name: Deploy latest version of docker-registry in dev-tools namespace
|
|
# local_action:
|
|
# module: kubernetes.core.helm
|
|
# name: dkregistry
|
|
# chart_ref: twuni/docker-registry
|
|
# release_namespace: dev-tools
|
|
# create_namespace: True
|
|
# values:
|
|
# replicaCount: 1
|
|
# ingress:
|
|
# enabled: true
|
|
# hosts:
|
|
# - dkregistry.xai-corp.net
|
|
# className: traefik
|
|
# secrets.htpassword: me1
|
|
# extraVolumeMounts:
|
|
# - name: registry-data
|
|
# mountPath: /var/lib/registry-data
|
|
# - name: registry-auth
|
|
# mountPath: /auth
|
|
# - name: registry-auth
|
|
# mountPath: /etc/docker/registry/
|
|
# - name: letsencrypt-data
|
|
# mountPath: /certs
|
|
# - name: letsencrypt-config
|
|
# mountPath: /etc/letsencrypt
|
|
# extraVolumes:
|
|
# - name: registry-data
|
|
# hostPath:
|
|
# path: /opt/shared/dkregistry/data
|
|
# - name: registry-auth
|
|
# hostPath:
|
|
# path: /opt/shared/dkregistry/auth
|
|
# - name: registry-config
|
|
# hostPath:
|
|
# path: /opt/shared/dkregistry/config/
|
|
# - name: letsencrypt-data
|
|
# hostPath:
|
|
# path: /opt/shared/letsencrypt-2
|
|
# - name: letsencrypt-config
|
|
# hostPath:
|
|
# path: /opt/shared/letsencrypt-2
|
|
# extraEnvVars:
|
|
# - name: REGISTRY_HTTP_SECRET
|
|
# value: aabuioqlwlcpp2
|
|
# - name: REGISTRY_HTTP_TLS_CERTIFICATE
|
|
# value: /certs/live/xai-corp.net/fullchain.pem
|
|
# - name: REGISTRY_HTTP_TLS_KEY
|
|
# value: /certs/live/xai-corp.net/privkey.pem
|
|
#
|
|
#
|
|
# k3s config file
|
|
#- name: Copy k3s config file to /etc/rancher/k3s/config.yaml
|
|
# ansible.builtin.copy:
|
|
# src: config.yaml
|
|
# dest: /etc/rancher/k3s/config.yaml
|
|
# become: true
|
|
#
|
|
# provision gitea
|
|
#
|
|
# provision argoCD
|
|
#
|
|
# provision graphana
|
|
#- name: Copy manifest for graphana
|
|
# ansible.builtin.copy:
|
|
# src: manifests/graphana.helm.yaml
|
|
# dest: /var/lib/rancher/k3s/server/manifests/graphana.helm.yaml
|
|
# become: true
|
|
#
|
|
#- name: Copy manifest for docker registry
|
|
# ansible.builtin.copy:
|
|
# src: manifests/registry.helm.yaml
|
|
# dest: /var/lib/rancher/k3s/server/manifests/dkregistry.helm.yaml
|
|
# become: true
|
|
#
|
|
#- name: Copy manifest for mariadb
|
|
# ansible.builtin.copy:
|
|
# src: manifests/mariadb.helm.yaml
|
|
# dest: /var/lib/rancher/k3s/server/manifests/mariadb.helm.yaml
|
|
# become: true
|
|
#
|
|
#- name: remove manifests
|
|
# ansible.builtin.file:
|
|
# state: absent
|
|
# path: "{{ item }}"
|
|
# loop:
|
|
# - /var/lib/rancher/k3s/server/manifests/graphana.helm.yaml
|
|
# - /var/lib/rancher/k3s/server/manifests/dkregistry.helm.yaml
|
|
# - /var/lib/rancher/k3s/server/manifests/mariadb.helm.yaml
|
|
# become: true
|