--- # yaml-language-server: $schema=https://taskfile.dev/schema.json version: "3" vars: # Directories ANSIBLE_DIR: "{{.ROOT_DIR}}/provision/ansible" BOOTSTRAP_DIR: "{{.ROOT_DIR}}/bootstrap" KUBERNETES_DIR: "{{.ROOT_DIR}}/k8s" PRIVATE_DIR: "{{.ROOT_DIR}}/.private" SCRIPTS_DIR: "{{.ROOT_DIR}}/scripts" # Files AGE_FILE: "{{.ROOT_DIR}}/age.key" BOOTSTRAP_CONFIG_FILE: "{{.ROOT_DIR}}/config.yaml" KUBECONFIG_FILE: "{{.ROOT_DIR}}/kubeconfig" MAKEJINJA_CONFIG_FILE: "{{.ROOT_DIR}}/makejinja.toml" PIP_REQUIREMENTS_FILE: "{{.ROOT_DIR}}/requirements.txt" SOPS_CONFIG_FILE: "{{.ROOT_DIR}}/.sops.yaml" # Binaries PYTHON_BIN: python3 env: KUBECONFIG: "{{.KUBECONFIG_FILE}}" PYTHONDONTWRITEBYTECODE: "1" SOPS_AGE_KEY_FILE: "{{.AGE_FILE}}" VIRTUAL_ENV: "{{.ROOT_DIR}}/.venv" includes: ansible: .taskfiles/Ansible kubernetes: .taskfiles/Kubernetes flux: .taskfiles/Flux repository: .taskfiles/Repository talos: .taskfiles/Talos sops: .taskfiles/Sops workstation: .taskfiles/Workstation externalsecrets: .taskfiles/ExternalSecrets volsync: .taskfiles/VolSync user: taskfile: .taskfiles/User optional: true tasks: default: task --list init: desc: Initialize configuration files cmds: - cp -n {{.BOOTSTRAP_CONFIG_FILE | replace ".yaml" ".sample.yaml"}} {{.BOOTSTRAP_CONFIG_FILE}} - cmd: echo === Configuration file copied === - cmd: echo Proceed with updating the configuration files... - cmd: echo {{.BOOTSTRAP_CONFIG_FILE}} status: - test -f {{.BOOTSTRAP_CONFIG_FILE}} silent: true configure: desc: Configure repository from bootstrap vars prompt: Any conflicting config in the kubernetes directory will be overwritten... continue? deps: ["workstation:direnv", "workstation:venv", "sops:age-keygen", "init"] cmds: - task: .template - task: sops:encrypt - task: .validate .template: internal: true cmd: "{{.VIRTUAL_ENV}}/bin/makejinja" preconditions: - msg: Missing virtual environment sh: test -d {{.VIRTUAL_ENV}} - msg: Missing Makejinja config file sh: test -f {{.MAKEJINJA_CONFIG_FILE}} - msg: Missing Makejinja plugin file sh: test -f {{.BOOTSTRAP_DIR}}/scripts/plugin.py - msg: Missing bootstrap config file sh: test -f {{.BOOTSTRAP_CONFIG_FILE}} .validate: internal: true cmds: - task: kubernetes:kubeconform - cmd: echo === Done rendering and validating YAML === - cmd: | if [[ $KUBECONFIG != "{{.KUBECONFIG_FILE}}" ]]; then echo WARNING: KUBECONFIG is not set to the expected value, this may cause conflicts. fi - cmd: | if [[ $SOPS_AGE_KEY_FILE != "{{.AGE_FILE}}" ]]; then echo WARNING: SOPS_AGE_KEY_FILE is not set to the expected value, this may cause conflicts. fi - cmd: | if test -f ~/.config/sops/age/keys.txt; then echo WARNING: SOPS Age key found in home directory, this may cause conflicts. fi silent: true