From 78e04e7af1e1b8cf392fc6dd4f15993141dd7765 Mon Sep 17 00:00:00 2001 From: WesleyCharlesBlake Date: Mon, 2 Oct 2023 17:04:53 +0200 Subject: [PATCH 01/15] workflow on new runner group --- .github/workflows/lint-test.yaml | 2 +- .github/workflows/release.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/lint-test.yaml b/.github/workflows/lint-test.yaml index f9809258..d96b6215 100644 --- a/.github/workflows/lint-test.yaml +++ b/.github/workflows/lint-test.yaml @@ -4,7 +4,7 @@ on: pull_request jobs: lint-test: - runs-on: ubuntu-latest + runs-on: arc-runner-set steps: - name: Checkout uses: actions/checkout@v4 diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index c8384eae..d5077293 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -7,7 +7,7 @@ on: jobs: release: - runs-on: ubuntu-latest + runs-on: arc-runner-set permissions: contents: write From b373e5bcd81bc6c1c163e04b3a25d69ff4f0669a Mon Sep 17 00:00:00 2001 From: WesleyCharlesBlake Date: Tue, 31 Oct 2023 15:49:35 +0200 Subject: [PATCH 02/15] fix setup helm action version --- .github/workflows/lint-test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lint-test.yaml b/.github/workflows/lint-test.yaml index d96b6215..52b8d651 100644 --- a/.github/workflows/lint-test.yaml +++ b/.github/workflows/lint-test.yaml @@ -14,7 +14,7 @@ jobs: - name: Set up Helm uses: azure/setup-helm@v3 with: - version: v3.11.2 + version: v3.5.0 - uses: actions/setup-python@v4 with: From 1b0b8676f02c45d6cbda240c26e2437ca43c7ac1 Mon Sep 17 00:00:00 2001 From: WesleyCharlesBlake Date: Tue, 31 Oct 2023 15:51:50 +0200 Subject: [PATCH 03/15] stupid workflow failing --- .github/workflows/lint-test.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/lint-test.yaml b/.github/workflows/lint-test.yaml index 52b8d651..84d5699f 100644 --- a/.github/workflows/lint-test.yaml +++ b/.github/workflows/lint-test.yaml @@ -13,8 +13,6 @@ jobs: - name: Set up Helm uses: azure/setup-helm@v3 - with: - version: v3.5.0 - uses: actions/setup-python@v4 with: From df6538822954816c3943eca4eea8cc94b1b3c7c5 Mon Sep 17 00:00:00 2001 From: WesleyCharlesBlake Date: Tue, 31 Oct 2023 16:22:44 +0200 Subject: [PATCH 04/15] run stupid workflows in ubuntu:latest container --- .github/workflows/lint-test.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/lint-test.yaml b/.github/workflows/lint-test.yaml index 84d5699f..f41c1859 100644 --- a/.github/workflows/lint-test.yaml +++ b/.github/workflows/lint-test.yaml @@ -1,10 +1,13 @@ name: Lint and Test Charts + on: pull_request jobs: lint-test: runs-on: arc-runner-set + container: + image: ubuntu:latest steps: - name: Checkout uses: actions/checkout@v4 From 7cb227752eb63e44e91ec44d6cd26c99709d3905 Mon Sep 17 00:00:00 2001 From: WesleyCharlesBlake Date: Tue, 31 Oct 2023 16:44:04 +0200 Subject: [PATCH 05/15] try run on base image that works --- .github/workflows/lint-test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lint-test.yaml b/.github/workflows/lint-test.yaml index f41c1859..81e2a4f2 100644 --- a/.github/workflows/lint-test.yaml +++ b/.github/workflows/lint-test.yaml @@ -7,7 +7,7 @@ jobs: lint-test: runs-on: arc-runner-set container: - image: ubuntu:latest + image: ghcr.io/actions/actions-runner:latest steps: - name: Checkout uses: actions/checkout@v4 From 619aa19667ea3520891bda022ab6d2acc0b5f7a2 Mon Sep 17 00:00:00 2001 From: WesleyCharlesBlake Date: Tue, 31 Oct 2023 16:56:19 +0200 Subject: [PATCH 06/15] run with containerMode.type=kubernetes --- .github/workflows/lint-test.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/lint-test.yaml b/.github/workflows/lint-test.yaml index 81e2a4f2..2993765d 100644 --- a/.github/workflows/lint-test.yaml +++ b/.github/workflows/lint-test.yaml @@ -6,8 +6,6 @@ on: pull_request jobs: lint-test: runs-on: arc-runner-set - container: - image: ghcr.io/actions/actions-runner:latest steps: - name: Checkout uses: actions/checkout@v4 From a7ae4285604cd44bb94f7c08944fa1478b3e780a Mon Sep 17 00:00:00 2001 From: WesleyCharlesBlake Date: Wed, 1 Nov 2023 12:03:32 +0200 Subject: [PATCH 07/15] try get arc working --- .github/workflows/lint-test.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/lint-test.yaml b/.github/workflows/lint-test.yaml index 2993765d..f41c1859 100644 --- a/.github/workflows/lint-test.yaml +++ b/.github/workflows/lint-test.yaml @@ -6,6 +6,8 @@ on: pull_request jobs: lint-test: runs-on: arc-runner-set + container: + image: ubuntu:latest steps: - name: Checkout uses: actions/checkout@v4 From 0765948e4278fb168d4a36b756a38d5764244261 Mon Sep 17 00:00:00 2001 From: WesleyCharlesBlake Date: Wed, 1 Nov 2023 12:14:43 +0200 Subject: [PATCH 08/15] use gha runner image --- .github/workflows/lint-test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lint-test.yaml b/.github/workflows/lint-test.yaml index f41c1859..81e2a4f2 100644 --- a/.github/workflows/lint-test.yaml +++ b/.github/workflows/lint-test.yaml @@ -7,7 +7,7 @@ jobs: lint-test: runs-on: arc-runner-set container: - image: ubuntu:latest + image: ghcr.io/actions/actions-runner:latest steps: - name: Checkout uses: actions/checkout@v4 From 113f916a8da4b2d98b7e755af36dbfdc437b719e Mon Sep 17 00:00:00 2001 From: WesleyCharlesBlake Date: Wed, 1 Nov 2023 12:27:29 +0200 Subject: [PATCH 09/15] use cimg/base build deps --- .github/workflows/lint-test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lint-test.yaml b/.github/workflows/lint-test.yaml index 81e2a4f2..4e9c37ab 100644 --- a/.github/workflows/lint-test.yaml +++ b/.github/workflows/lint-test.yaml @@ -7,7 +7,7 @@ jobs: lint-test: runs-on: arc-runner-set container: - image: ghcr.io/actions/actions-runner:latest + image: cimg/base:2022.09 steps: - name: Checkout uses: actions/checkout@v4 From 70c1e563afa24e1c419a40bdf5ba0d96401cbe7b Mon Sep 17 00:00:00 2001 From: WesleyCharlesBlake Date: Wed, 1 Nov 2023 12:31:11 +0200 Subject: [PATCH 10/15] try something --- .github/workflows/lint-test.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/lint-test.yaml b/.github/workflows/lint-test.yaml index 4e9c37ab..5f621738 100644 --- a/.github/workflows/lint-test.yaml +++ b/.github/workflows/lint-test.yaml @@ -6,8 +6,8 @@ on: pull_request jobs: lint-test: runs-on: arc-runner-set - container: - image: cimg/base:2022.09 + # container: + # image: cimg/base:2022.09 steps: - name: Checkout uses: actions/checkout@v4 From 0441450d39641e2fdd156128106cfc5cdc70fe54 Mon Sep 17 00:00:00 2001 From: WesleyCharlesBlake Date: Wed, 1 Nov 2023 12:33:13 +0200 Subject: [PATCH 11/15] use ubuntu 20.04 --- .github/workflows/lint-test.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/lint-test.yaml b/.github/workflows/lint-test.yaml index 5f621738..3474304c 100644 --- a/.github/workflows/lint-test.yaml +++ b/.github/workflows/lint-test.yaml @@ -6,8 +6,8 @@ on: pull_request jobs: lint-test: runs-on: arc-runner-set - # container: - # image: cimg/base:2022.09 + container: + image: ubuntu:20.04 steps: - name: Checkout uses: actions/checkout@v4 From 0e461630156c87aaab24d2ad1e1584099ebd1da4 Mon Sep 17 00:00:00 2001 From: WesleyCharlesBlake Date: Wed, 1 Nov 2023 12:50:29 +0200 Subject: [PATCH 12/15] use summerwinds image --- .github/workflows/lint-test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lint-test.yaml b/.github/workflows/lint-test.yaml index 3474304c..3fa5794c 100644 --- a/.github/workflows/lint-test.yaml +++ b/.github/workflows/lint-test.yaml @@ -7,7 +7,7 @@ jobs: lint-test: runs-on: arc-runner-set container: - image: ubuntu:20.04 + image: summerwind/actions-runner:ubuntu-22.04 steps: - name: Checkout uses: actions/checkout@v4 From 2872d24b459ef7ad2e7f3c804f8901a2d5b0476d Mon Sep 17 00:00:00 2001 From: WesleyCharlesBlake Date: Wed, 1 Nov 2023 13:23:00 +0200 Subject: [PATCH 13/15] update chart-testing-action to fix cosign issues --- .github/workflows/lint-test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lint-test.yaml b/.github/workflows/lint-test.yaml index 3fa5794c..dbd17549 100644 --- a/.github/workflows/lint-test.yaml +++ b/.github/workflows/lint-test.yaml @@ -23,7 +23,7 @@ jobs: check-latest: true - name: Set up chart-testing - uses: helm/chart-testing-action@v2.4.0 + uses: helm/chart-testing-action@v2.6.0 - name: Run chart-testing (list-changed) id: list-changed From 7a7a6db0b29ee3a1c65e54bcd0f6d54f867483ec Mon Sep 17 00:00:00 2001 From: WesleyCharlesBlake Date: Wed, 1 Nov 2023 13:29:20 +0200 Subject: [PATCH 14/15] update spectre to latest release --- charts/spectre/Chart.yaml | 4 ++-- charts/spectre/README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/charts/spectre/Chart.yaml b/charts/spectre/Chart.yaml index 7c1f75e5..c26024ad 100644 --- a/charts/spectre/Chart.yaml +++ b/charts/spectre/Chart.yaml @@ -20,10 +20,10 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.1.8 +version: 0.1.9 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. # It is recommended to use it with quotes. -appVersion: "0.11.5" +appVersion: "0.22.7" diff --git a/charts/spectre/README.md b/charts/spectre/README.md index 97abacd6..ea48334e 100644 --- a/charts/spectre/README.md +++ b/charts/spectre/README.md @@ -1,6 +1,6 @@ # spectre -![Version: 0.1.8](https://img.shields.io/badge/Version-0.1.8-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.11.5](https://img.shields.io/badge/AppVersion-0.11.5-informational?style=flat-square) +![Version: 0.1.9](https://img.shields.io/badge/Version-0.1.9-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.22.7](https://img.shields.io/badge/AppVersion-0.22.7-informational?style=flat-square) A Helm chart for deploying Chronicle Spectre Relay on Kubernetes From eeda5a5b90d77ae66151948f1b591398077339c4 Mon Sep 17 00:00:00 2001 From: WesleyCharlesBlake Date: Wed, 1 Nov 2023 13:34:49 +0200 Subject: [PATCH 15/15] remove timeout on helm args --- ct.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ct.yaml b/ct.yaml index 7c54b842..0767f247 100644 --- a/ct.yaml +++ b/ct.yaml @@ -5,4 +5,4 @@ chart-dirs: chart-repos: - chronicle=https://chronicleprotocol.github.io/charts - bitnami=https://charts.bitnami.com/bitnami -helm-extra-args: --timeout 600s +# helm-extra-args: --timeout 600s