8000 k8s: fix postee dependency by josedonizetti · Pull Request #2342 · aquasecurity/tracee · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

k8s: fix postee dependency #2342

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/publish-helm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion deploy/helm/tracee/Chart.lock
Original file line number Diff line number Diff line change
Expand Up @@ -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"
4 changes: 2 additions & 2 deletions deploy/helm/tracee/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion docs/getting-started/installing/kubernetes.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/setup-development-machine-with-vagrant.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down
0