Skip to content
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

Add Experimental HelmOps controller. #3092

Merged
merged 15 commits into from
Dec 16, 2024
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
2 changes: 2 additions & 0 deletions .github/scripts/deploy-fleet.sh
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,8 @@ eventually helm upgrade --install fleet charts/fleet \
$shards_settings \
--set-string extraEnv[0].name=EXPERIMENTAL_OCI_STORAGE \
--set-string extraEnv[0].value=true \
--set-string extraEnv[1].name=EXPERIMENTAL_HELM_OPS \
--set-string extraEnv[1].value=true \
--set garbageCollectionInterval=1s \
--set debug=true --set debugLevel=1

Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/e2e-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,8 @@ jobs:
FLEET_E2E_NS: fleet-local
run: |
ginkgo --github-output --label-filter='sharding' e2e/single-cluster
ginkgo --github-output e2e/metrics
SHARD=shard1 ginkgo --github-output e2e/metrics
ginkgo --github-output --label-filter='!oci-registry' e2e/metrics
SHARD=shard1 ginkgo --github-output --label-filter='!oci-registry' e2e/metrics
-
name: Create Zot certificates for OCI tests
if: ${{ matrix.test_type.name == 'infra-setup' }}
Expand Down Expand Up @@ -134,6 +134,7 @@ jobs:
# Run tests requiring an OCI registry
e2e/testenv/infra/infra setup --oci-registry=true
ginkgo --github-output --label-filter='oci-registry' e2e/single-cluster
ginkgo --github-output --label-filter='oci-registry' e2e/metrics

e2e/testenv/infra/infra teardown
-
Expand Down
4 changes: 4 additions & 0 deletions charts/fleet-agent/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,8 @@ spec:
- ALL
{{- end }}
volumeMounts:
- mountPath: /tmp
name: tmp
- mountPath: /.kube
name: kube
- env:
Expand Down Expand Up @@ -97,6 +99,8 @@ spec:
- ALL
{{- end }}
volumes:
- name: tmp
emptyDir: {}
- name: kube
emptyDir: {}
serviceAccountName: fleet-agent
Expand Down
Loading
Loading