This repository has been archived by the owner on Nov 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This changes the `fluxctl install` installation to use a kustomization, rather than sed. This is a little more robust; but the motivation is more that it will enable more complicated patches, like mounting volumes. _En passant_, the kubectl rollout during flux installation gets a timeout, so it can fail fast. Well, faster than twenty minutes.
- Loading branch information
Showing
3 changed files
with
31 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
- op: add | ||
path: /spec/template/spec/containers/0/args/- | ||
value: --git-poll-interval=10s | ||
- op: add | ||
path: /spec/template/spec/containers/0/args/- | ||
value: --sync-interval=10s | ||
- op: add | ||
path: /spec/template/spec/containers/0/args/- | ||
value: --registry-exclude-image=* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
resources: | ||
- flux-account.yaml | ||
- flux-deployment.yaml | ||
- flux-secret.yaml | ||
- memcache-dep.yaml | ||
- memcache-svc.yaml | ||
patchesJson6902: | ||
# use a poll interval of 10s (to make tests quicker) and disable | ||
# registry polling (to avoid overloading kind) | ||
- target: | ||
group: apps | ||
version: v1 | ||
kind: Deployment | ||
name: flux | ||
path: e2e_patch.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters