From 15e94d1f497ea782997f1e3cac38616e19d506bb Mon Sep 17 00:00:00 2001 From: Jose Donizetti Date: Tue, 8 Nov 2022 12:35:17 -0300 Subject: [PATCH] k8s: fix postee dependency --- .github/workflows/publish-helm.yaml | 4 ++-- deploy/helm/tracee/Chart.lock | 2 +- deploy/helm/tracee/Chart.yaml | 4 ++-- docs/getting-started/installing/kubernetes.md | 2 +- docs/tutorials/setup-development-machine-with-vagrant.md | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/publish-helm.yaml b/.github/workflows/publish-helm.yaml index d92b7e42443e..25260fb3ea5a 100644 --- a/.github/workflows/publish-helm.yaml +++ b/.github/workflows/publish-helm.yaml @@ -35,9 +35,9 @@ jobs: uses: actions/setup-python@98f2ad02fd48d057ee3b4d4f66525b231c3e52b6 with: python-version: 3.7 - - name: Set up aqua-charts + - name: Set up aqua charts run: | - helm repo add aqua-charts https://aquasecurity.github.io/helm-charts + helm repo add aqua https://aquasecurity.github.io/helm-charts - name: Setup Chart Linting id: lint uses: helm/chart-testing-action@dae259e86a35ff09145c0805e2d7dd3f7207064a diff --git a/deploy/helm/tracee/Chart.lock b/deploy/helm/tracee/Chart.lock index 3fd707acd64b..02ca4c5fc8b2 100644 --- a/deploy/helm/tracee/Chart.lock +++ b/deploy/helm/tracee/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://aquasecurity.github.io/helm-charts version: v2.8.4 digest: sha256:71c441fabe80dcf95ff82cdf719bb99bf3f748143f5e7d5bee76f9267e7e0978 -generated: "2022-10-18T10:48:25.680176048-03:00" +generated: "2022-11-08T12:33:18.001305142-03:00" diff --git a/deploy/helm/tracee/Chart.yaml b/deploy/helm/tracee/Chart.yaml index 8fe8f7a025c1..eb843cf3c66a 100644 --- a/deploy/helm/tracee/Chart.yaml +++ b/deploy/helm/tracee/Chart.yaml @@ -29,6 +29,6 @@ appVersion: "0.9.3" dependencies: - name: postee version: "~2.8.2" - # helm repo add aqua-charts https://aquasecurity.github.io/helm-charts - repository: "@aqua-charts" + # helm repo add aqua https://aquasecurity.github.io/helm-charts/ + repository: "@aqua" condition: postee.enabled diff --git a/docs/getting-started/installing/kubernetes.md b/docs/getting-started/installing/kubernetes.md index 2c577952446d..78ab0a85fa2b 100644 --- a/docs/getting-started/installing/kubernetes.md +++ b/docs/getting-started/installing/kubernetes.md @@ -44,7 +44,7 @@ the detections in your preferred way (e.g. Slack, E-mail, JIRA and more). or install the Helm chart from a local directory: ```text - $ helm repo add aqua-charts https://aquasecurity.github.io/helm-charts + $ helm repo add aqua https://aquasecurity.github.io/helm-charts/ $ helm dependency update ./deploy/helm/tracee $ helm install tracee ./deploy/helm/tracee \ --namespace tracee-system --create-namespace \ diff --git a/docs/tutorials/setup-development-machine-with-vagrant.md b/docs/tutorials/setup-development-machine-with-vagrant.md index 58f52708801d..34ac609599d0 100644 --- a/docs/tutorials/setup-development-machine-with-vagrant.md +++ b/docs/tutorials/setup-development-machine-with-vagrant.md @@ -309,7 +309,7 @@ As an alternative to static deployment descriptors you can install Tracee and Postee with Helm: ``` -helm repo add aqua-charts https://aquasecurity.github.io/helm-charts +helm repo add aqua https://aquasecurity.github.io/helm-charts helm dependency update ./deploy/helm/tracee helm install tracee ./deploy/helm/tracee \ --namespace tracee-system --create-namespace \