├── .github └── workflows │ └── create-release.yml ├── .gitignore ├── .helmignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Chart.lock ├── Chart.yaml ├── LICENSE ├── NOTICE ├── OWNERS ├── OWNERS_ALIASES ├── README.md └── values.yaml /.github/workflows/create-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-controllers-k8s/ack-chart/HEAD/.github/workflows/create-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | charts/*.tgz -------------------------------------------------------------------------------- /.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-controllers-k8s/ack-chart/HEAD/.helmignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-controllers-k8s/ack-chart/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-controllers-k8s/ack-chart/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-controllers-k8s/ack-chart/HEAD/Chart.lock -------------------------------------------------------------------------------- /Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-controllers-k8s/ack-chart/HEAD/Chart.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-controllers-k8s/ack-chart/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- 1 | Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 2 | -------------------------------------------------------------------------------- /OWNERS: -------------------------------------------------------------------------------- 1 | # See the OWNERS docs at https://go.k8s.io/owners 2 | 3 | approvers: 4 | - core-ack-team -------------------------------------------------------------------------------- /OWNERS_ALIASES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-controllers-k8s/ack-chart/HEAD/OWNERS_ALIASES -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-controllers-k8s/ack-chart/HEAD/README.md -------------------------------------------------------------------------------- /values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-controllers-k8s/ack-chart/HEAD/values.yaml --------------------------------------------------------------------------------