14 lines
341 B
YAML
14 lines
341 B
YAML
---
|
|
# yaml-language-server: $schema=https://taskfile.dev/schema.json
|
|
version: "3"
|
|
|
|
vars:
|
|
CLUSTER_DIR: "{{.ROOT_DIR}}/cluster"
|
|
|
|
includes:
|
|
flux: .taskfiles/Flux/Taskfile.yaml
|
|
|
|
tasks:
|
|
execPostgres:
|
|
desc: Exec into the postgres pod as the postgres user
|
|
cmd: kubectl -n database exec -it postgresql-0 -- psql -d postgres -U postgres |