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

apps sc & wc: private subnet as node-ips #1582

Merged
merged 11 commits into from
Sep 1, 2023
Merged
1 change: 1 addition & 0 deletions WIP-CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
### Updated

- Upgraded falco-exporter chart version to `v0.9.6` and app version to `v0.8.3`
- Added "IPs in Subnet mask" logic in checkIfDiffAndUpdateDNSIPs, checkIfDiffAndUpdateKubectlIPs and checkIfDiffAndUpdateIPs of update-ips.bash

### Removed

Expand Down
4 changes: 2 additions & 2 deletions bin/ck8s
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ usage() {
echo " validate <wc|sc> validates config files" 1>&2
echo " providers lists supported cloud providers" 1>&2
echo " flavors lists supported configuration flavors" 1>&2
echo " update-ips <wc|sc|both> <update|dry-run> Automatically fetches and updates the IPs for network policies" 1>&2
echo " update-ips <wc|sc|both> <apply|dry-run> Automatically fetches and applies the IPs for network policies" 1>&2
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
echo " update-ips <wc|sc|both> <apply|dry-run> Automatically fetches and applies the IPs for network policies" 1>&2
echo " update-ips <wc|sc|both> <apply|dry-run> Automatically fetches and updates the IPs for network policies" 1>&2

Xartos marked this conversation as resolved.
Show resolved Hide resolved
exit 1
}

Expand Down Expand Up @@ -152,7 +152,7 @@ case "${1}" in
flavors) echo "${ck8s_flavors[@]}" ;;
update-ips)
[[ "${2}" =~ ^(wc|sc|both)$ ]] || usage
[[ "${3}" =~ ^(update|dry-run)$ ]] || usage
[[ "${3}" =~ ^(apply|dry-run)$ ]] || usage
"${here}/update-ips.bash" "${2}" "${3}"
;;
*) usage ;;
Expand Down
Loading