Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix integration test
  • Loading branch information
lokst committed Nov 26, 2020
1 parent cd1ff20 commit 31e6edb
Showing 1 changed file with 18 additions and 6 deletions.
24 changes: 18 additions & 6 deletions .circleci/config.yml
Expand Up @@ -48,7 +48,7 @@ jobs:
parameters:
release-name:
type: string
default: "grafana-release"
default: "prometheus-release"
cluster-name:
type: string
description: Cluster name
Expand All @@ -65,9 +65,13 @@ jobs:
- aws-eks/update-kubeconfig-with-authenticator:
cluster-name: << parameters.cluster-name >>
install-kubectl: true
- run:
name: Install cncf stable repo
command: |
helm repo add stable http://cncf.gitlab.io/stable
- helm/install-helm-chart:
chart: stable/grafana
release-name: grafana-release
chart: stable/prometheus
release-name: prometheus-release
helm-version: << parameters.helm-version >>
update-repositories: << parameters.update-repositories >>
upgrade-helm-chart-on-eks-cluster:
Expand All @@ -89,9 +93,13 @@ jobs:
- aws-eks/update-kubeconfig-with-authenticator:
cluster-name: << parameters.cluster-name >>
install-kubectl: true
- run:
name: Install cncf stable repo
command: |
helm repo add stable http://cncf.gitlab.io/stable
- helm/upgrade-helm-chart:
chart: stable/grafana
release-name: grafana-release
chart: stable/prometheus
release-name: prometheus-release
helm-version: << parameters.helm-version >>
update-repositories: << parameters.update-repositories >>
# test specifying no-output-timeout
Expand All @@ -113,8 +121,12 @@ jobs:
- aws-eks/update-kubeconfig-with-authenticator:
cluster-name: << parameters.cluster-name >>
install-kubectl: true
- run:
name: Install cncf stable repo
command: |
helm repo add stable http://cncf.gitlab.io/stable
- helm/delete-helm-release:
release-name: grafana-release
release-name: prometheus-release
purge: true
timeout: << parameters.timeout >>
helm-version: << parameters.helm-version >>
Expand Down

0 comments on commit 31e6edb

Please sign in to comment.