diff --git a/Makefile b/Makefile index 55ca73a..1b94ac5 100644 --- a/Makefile +++ b/Makefile @@ -151,7 +151,7 @@ helmManifests: manifests kustomize kubernetes-split-yaml ## Create Helm Template .PHONY: helmInstall helmInstall: - helm upgrade -i overwhelm ./.charts/overwhelm + helm upgrade -i overwhelm ./charts/overwhelm .PHONY: uninstall uninstall: manifests kustomize ## Uninstall CRDs from the K8s cluster specified in ~/.kube/config. Call with ignore-not-found=true to ignore resource not found errors during deletion. diff --git a/charts/overwhelm/Chart.yaml b/charts/overwhelm/Chart.yaml index c6e77af..ff37516 100644 --- a/charts/overwhelm/Chart.yaml +++ b/charts/overwhelm/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v2 name: overwhelm -version: 1.0.1 +version: 1.0.2 maintainers: - name: "Expedia Group" url: "https://github.com/ExpediaGroup/overwhelm" \ No newline at end of file diff --git a/charts/overwhelm/templates/overwhelm-controller-manager-deployment.yaml b/charts/overwhelm/templates/overwhelm-controller-manager-deployment.yaml index ea09be8..2adc243 100755 --- a/charts/overwhelm/templates/overwhelm-controller-manager-deployment.yaml +++ b/charts/overwhelm/templates/overwhelm-controller-manager-deployment.yaml @@ -20,7 +20,7 @@ spec: containers: - args: - --health-probe-bind-address=:8081 - - --metrics-bind-address=127.0.0.1:8080 + - --metrics-bind-address=:8080 - --leader-elect command: - /manager diff --git a/config/default/manager_auth_proxy_patch.yaml b/config/default/manager_auth_proxy_patch.yaml index 45be318..440c13d 100644 --- a/config/default/manager_auth_proxy_patch.yaml +++ b/config/default/manager_auth_proxy_patch.yaml @@ -30,5 +30,5 @@ spec: - name: manager args: - "--health-probe-bind-address=:8081" - - "--metrics-bind-address=127.0.0.1:8080" + - "--metrics-bind-address=:8080" - "--leader-elect"