gitextract_hj9wc7s7/ ├── .github/ │ ├── PULL_REQUEST_TEMPLATE.md │ └── workflows/ │ ├── build.yaml │ ├── ci.yaml │ ├── dependabot-automerge.yaml │ ├── docs.yaml │ └── release.yaml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── LICENSES/ │ ├── helm/ │ │ └── LICENSE │ ├── helm-diff/ │ │ └── LICENSE │ └── helm-template/ │ └── LICENSE ├── Makefile ├── README.md ├── cmd/ │ ├── down.go │ ├── get.go │ ├── list.go │ ├── root.go │ ├── template.go │ └── up.go ├── docs/ │ ├── commands/ │ │ ├── down.md │ │ ├── get.md │ │ ├── list.md │ │ ├── template.md │ │ └── up.md │ ├── compose-file-reference.md │ ├── index.md │ ├── key-features-and-use-cases.md │ ├── quick-start.md │ ├── storage-providers.md │ └── stylesheets/ │ └── extra.css ├── examples/ │ ├── .gitignore │ ├── k8s-storage-compose.yaml │ ├── local-storage-compose.yaml │ ├── s3-storage-compose.yaml │ ├── simple-compose.yaml │ ├── values/ │ │ └── wordpress.yaml │ └── wordpress-compose.yaml ├── go.mod ├── go.sum ├── internal/ │ ├── compose/ │ │ ├── compose.go │ │ └── helm.go │ ├── config/ │ │ ├── config.go │ │ ├── config_test.go │ │ ├── types.go │ │ └── types_test.go │ ├── provider/ │ │ ├── kubernetes.go │ │ ├── kubernetes_test.go │ │ ├── local.go │ │ ├── providers.go │ │ ├── s3.go │ │ └── s3_test.go │ └── util/ │ ├── colors.go │ ├── encoding.go │ └── util.go ├── main.go ├── mkdocs.yaml ├── plugin.yaml └── scripts/ └── install.sh