Skip to content
This repository has been archived by the owner on May 16, 2023. It is now read-only.

Commit

Permalink
[meta] fix transient errors with stable repository (#1018)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmlrt committed Jan 15, 2021
1 parent 83edfe2 commit b31bcf1
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 2 deletions.
2 changes: 0 additions & 2 deletions helpers/terraform/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,6 @@ k8s-staging-registry: creds ## Create the staging registry auth secret in k8s
.PHONY: integration
integration: creds ## Deploy helm chart and run integration tests
cd ../../$(CHART)/ && \
helm repo add stable https://charts.helm.sh/stable && \
helm dependency update && \
cd ./examples/$(SUITE) && \
make

Expand Down
2 changes: 2 additions & 0 deletions metricbeat/examples/default/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ RELEASE = helm-metricbeat-default
GOSS_SELECTOR = release=$(RELEASE),app=helm-metricbeat-default-metricbeat

install:
helm repo add stable https://charts.helm.sh/stable
helm dependency update ../../
helm upgrade --wait --timeout=$(TIMEOUT) --install $(RELEASE) ../../

test-metrics:
Expand Down
2 changes: 2 additions & 0 deletions metricbeat/examples/oss/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ RELEASE := helm-metricbeat-oss
GOSS_SELECTOR = release=$(RELEASE),app=helm-metricbeat-oss-metricbeat

install:
helm repo add stable https://charts.helm.sh/stable
helm dependency update ../../
helm upgrade --wait --timeout=$(TIMEOUT) --install --values values.yaml $(RELEASE) ../../

test-metrics:
Expand Down
2 changes: 2 additions & 0 deletions metricbeat/examples/security/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ RELEASE := helm-metricbeat-security
GOSS_SELECTOR = release=$(RELEASE),app=helm-metricbeat-security-metricbeat

install:
helm repo add stable https://charts.helm.sh/stable
helm dependency update ../../
helm upgrade --wait --timeout=$(TIMEOUT) --install --values values.yaml $(RELEASE) ../../

test-metrics:
Expand Down
2 changes: 2 additions & 0 deletions metricbeat/examples/upgrade/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ FROM := 7.10.0 # upgrade from version < 7.10.0 is failing due to selector
# breaking change in https://github.com/elastic/helm-charts/pull/516

install:
helm repo add stable https://charts.helm.sh/stable
helm dependency update ../../
../../../helpers/upgrade.sh --chart $(CHART) --release $(RELEASE) --from $(FROM)
kubectl rollout status daemonset $(RELEASE)-metricbeat
kubectl rollout status deployment $(RELEASE)-metricbeat-metrics
Expand Down

0 comments on commit b31bcf1

Please sign in to comment.