-
-
Notifications
You must be signed in to change notification settings - Fork 124
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
44ab879
commit 682dbfa
Showing
1 changed file
with
35 additions
and
0 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,35 @@ | ||
# # see what changes would be made, returns nonzero returncode if different | ||
# kubectl get configmap kube-proxy -n kube-system -o yaml | \ | ||
# sed -e "s/strictARP: false/strictARP: true/" | \ | ||
# kubectl diff -f - -n kube-system | ||
|
||
# # actually apply the changes, returns nonzero returncode on errors only | ||
# kubectl get configmap kube-proxy -n kube-system -o yaml | \ | ||
# sed -e "s/strictARP: false/strictARP: true/" | \ | ||
# kubectl apply -f - -n kube-system | ||
|
||
apiVersion: source.toolkit.fluxcd.io/v1 | ||
kind: HelmRepository | ||
metadata: | ||
name: metallb | ||
namespace: flux-system | ||
spec: | ||
interval: 1m | ||
url: https://metallb.github.io/metallb | ||
--- | ||
apiVersion: helm.toolkit.fluxcd.io/v2 | ||
kind: HelmRelease | ||
metadata: | ||
name: metallb | ||
namespace: metallb | ||
spec: | ||
interval: 10m | ||
chart: | ||
spec: | ||
chart: metallb | ||
version: '0.14.5' | ||
sourceRef: | ||
kind: HelmRepository | ||
name: metallb | ||
namespace: flux-system | ||
interval: 1m |