From 98dc416847d6cddb05a1712a8213c19f3ee3bef1 Mon Sep 17 00:00:00 2001 From: Adao Junior Date: Thu, 23 Jul 2020 10:29:23 -0500 Subject: [PATCH 1/5] Testing initial helm ci --- deploy/complete/helm-chart/bumper | 1 + 1 file changed, 1 insertion(+) create mode 100644 deploy/complete/helm-chart/bumper diff --git a/deploy/complete/helm-chart/bumper b/deploy/complete/helm-chart/bumper new file mode 100644 index 000000000..7ffe9249a --- /dev/null +++ b/deploy/complete/helm-chart/bumper @@ -0,0 +1 @@ +bump 0 \ No newline at end of file From ea1b598503e28aeeac3e4821c719e285fdcaad15 Mon Sep 17 00:00:00 2001 From: Adao Junior Date: Thu, 23 Jul 2020 10:34:49 -0500 Subject: [PATCH 2/5] include prune fetch --- .github/workflows/helm-ci.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/helm-ci.yml b/.github/workflows/helm-ci.yml index f7f831dd7..a57d602d8 100644 --- a/.github/workflows/helm-ci.yml +++ b/.github/workflows/helm-ci.yml @@ -10,8 +10,13 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v1 + uses: actions/checkout@v2 + + - name: Fetch history + run: git fetch --prune --unshallow + - name: Run chart-testing (lint) + id: lint uses: helm/chart-testing-action@master with: command: lint \ No newline at end of file From fca739f1b21348cdae23695599021941fde46ace Mon Sep 17 00:00:00 2001 From: Adao Junior Date: Thu, 23 Jul 2020 10:37:43 -0500 Subject: [PATCH 3/5] change bump test --- deploy/complete/helm-chart/bumper | 1 - deploy/complete/helm-chart/mushop/values.yaml | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) delete mode 100644 deploy/complete/helm-chart/bumper diff --git a/deploy/complete/helm-chart/bumper b/deploy/complete/helm-chart/bumper deleted file mode 100644 index 7ffe9249a..000000000 --- a/deploy/complete/helm-chart/bumper +++ /dev/null @@ -1 +0,0 @@ -bump 0 \ No newline at end of file diff --git a/deploy/complete/helm-chart/mushop/values.yaml b/deploy/complete/helm-chart/mushop/values.yaml index cfb845874..923c3091a 100644 --- a/deploy/complete/helm-chart/mushop/values.yaml +++ b/deploy/complete/helm-chart/mushop/values.yaml @@ -1,4 +1,5 @@ global: + bump: 0 mock: service: "false" osb: From 029728eaeb84631d057a7387f895f110cd5aaae6 Mon Sep 17 00:00:00 2001 From: Adao Junior Date: Thu, 23 Jul 2020 21:30:41 -0500 Subject: [PATCH 4/5] ci-values for mushop helm chart --- .../helm-chart/mushop/ci/ci-values.yaml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 deploy/complete/helm-chart/mushop/ci/ci-values.yaml diff --git a/deploy/complete/helm-chart/mushop/ci/ci-values.yaml b/deploy/complete/helm-chart/mushop/ci/ci-values.yaml new file mode 100644 index 000000000..cbffaeae2 --- /dev/null +++ b/deploy/complete/helm-chart/mushop/ci/ci-values.yaml @@ -0,0 +1,19 @@ +global: + mock: + service: "all" + +# Catalogue service runs in mock mode for product images +catalogue: + enabled: true + +carts: + enabled: false + +orders: + enabled: false + +payment: + enabled: false + +user: + enabled: false From f78cc49a931ed868358e413a5133bc67138986d6 Mon Sep 17 00:00:00 2001 From: Adao Junior Date: Thu, 23 Jul 2020 21:30:55 -0500 Subject: [PATCH 5/5] ci-values for setup helm chart --- .../helm-chart/setup/ci/ci-values.yaml | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 deploy/complete/helm-chart/setup/ci/ci-values.yaml diff --git a/deploy/complete/helm-chart/setup/ci/ci-values.yaml b/deploy/complete/helm-chart/setup/ci/ci-values.yaml new file mode 100644 index 000000000..1bf63201c --- /dev/null +++ b/deploy/complete/helm-chart/setup/ci/ci-values.yaml @@ -0,0 +1,26 @@ +metrics-server: + enabled: true + +prometheus: + enabled: true + +catalog: + enabled: true + +ingress-nginx: + enabled: true + controller: + metrics: + enabled: true + +cert-manager: + enabled: true + installCRDs: true + +grafana: + enabled: true + +jenkins: + enabled: false + + \ No newline at end of file