├── .github ├── CODEOWNERS ├── release-drafter.yml └── workflows │ ├── cd.yaml │ ├── ci.yaml │ └── release-drafter.yml ├── LICENSE ├── README.md └── charts └── wiremock ├── .helmignore ├── Chart.yaml ├── README.md ├── mappings └── mapping_1.json ├── responses └── response_1.json ├── templates ├── NOTES.txt ├── _helpers.tpl ├── configmap-mappings.yaml ├── configmap-responses.yaml ├── deployment.yaml ├── extra-manifests.yaml ├── hpa.yaml ├── ingress.yaml ├── persistentvolumeclaim-mappings.yaml ├── persistentvolumeclaim-responses.yaml ├── service.yaml └── serviceaccount.yaml └── values.yaml /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @gitkent @oleg-neanshev 2 | -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiremock/helm-charts/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/cd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiremock/helm-charts/HEAD/.github/workflows/cd.yaml -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiremock/helm-charts/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiremock/helm-charts/HEAD/.github/workflows/release-drafter.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiremock/helm-charts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiremock/helm-charts/HEAD/README.md -------------------------------------------------------------------------------- /charts/wiremock/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiremock/helm-charts/HEAD/charts/wiremock/.helmignore -------------------------------------------------------------------------------- /charts/wiremock/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiremock/helm-charts/HEAD/charts/wiremock/Chart.yaml -------------------------------------------------------------------------------- /charts/wiremock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiremock/helm-charts/HEAD/charts/wiremock/README.md -------------------------------------------------------------------------------- /charts/wiremock/mappings/mapping_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiremock/helm-charts/HEAD/charts/wiremock/mappings/mapping_1.json -------------------------------------------------------------------------------- /charts/wiremock/responses/response_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiremock/helm-charts/HEAD/charts/wiremock/responses/response_1.json -------------------------------------------------------------------------------- /charts/wiremock/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiremock/helm-charts/HEAD/charts/wiremock/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/wiremock/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiremock/helm-charts/HEAD/charts/wiremock/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/wiremock/templates/configmap-mappings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiremock/helm-charts/HEAD/charts/wiremock/templates/configmap-mappings.yaml -------------------------------------------------------------------------------- /charts/wiremock/templates/configmap-responses.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiremock/helm-charts/HEAD/charts/wiremock/templates/configmap-responses.yaml -------------------------------------------------------------------------------- /charts/wiremock/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiremock/helm-charts/HEAD/charts/wiremock/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/wiremock/templates/extra-manifests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiremock/helm-charts/HEAD/charts/wiremock/templates/extra-manifests.yaml -------------------------------------------------------------------------------- /charts/wiremock/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiremock/helm-charts/HEAD/charts/wiremock/templates/hpa.yaml -------------------------------------------------------------------------------- /charts/wiremock/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiremock/helm-charts/HEAD/charts/wiremock/templates/ingress.yaml -------------------------------------------------------------------------------- /charts/wiremock/templates/persistentvolumeclaim-mappings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiremock/helm-charts/HEAD/charts/wiremock/templates/persistentvolumeclaim-mappings.yaml -------------------------------------------------------------------------------- /charts/wiremock/templates/persistentvolumeclaim-responses.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiremock/helm-charts/HEAD/charts/wiremock/templates/persistentvolumeclaim-responses.yaml -------------------------------------------------------------------------------- /charts/wiremock/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiremock/helm-charts/HEAD/charts/wiremock/templates/service.yaml -------------------------------------------------------------------------------- /charts/wiremock/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiremock/helm-charts/HEAD/charts/wiremock/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /charts/wiremock/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wiremock/helm-charts/HEAD/charts/wiremock/values.yaml --------------------------------------------------------------------------------