-
Notifications
You must be signed in to change notification settings - Fork 71
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
chore: Update azure-aci to use nodeutil instead of node-cli #277
Conversation
Big diff due to undoing the revert. |
Codecov Report
@@ Coverage Diff @@
## master #277 +/- ##
==========================================
- Coverage 42.79% 42.54% -0.25%
==========================================
Files 35 35
Lines 3491 3516 +25
==========================================
+ Hits 1494 1496 +2
- Misses 1816 1837 +21
- Partials 181 183 +2
📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
flags.StringVar(&clusterDomain, "cluster-domain", clusterDomain, "kubernetes cluster-domain") | ||
flag.DurationVar(&startupTimeout, "startup-timeout", startupTimeout, "How long to wait for the virtual-kubelet to start") | ||
flags.BoolVar(&disableTaint, "disable-taint", disableTaint, "disable the node taint") | ||
flag.StringVar(&operatingSystem, "os", operatingSystem, "Operating System (Linux/Windows)") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
flag.StringVar(&operatingSystem, "os", operatingSystem, "Operating System (Linux/Windows)") | |
flags.StringVar(&operatingSystem, "os", operatingSystem, "Operating System (Linux/Windows)") |
flags.StringVar(&nodeName, "nodename", nodeName, "kubernetes node name") | ||
flags.StringVar(&cfgPath, "provider-config", cfgPath, "cloud provider configuration file") | ||
flags.StringVar(&clusterDomain, "cluster-domain", clusterDomain, "kubernetes cluster-domain") | ||
flag.DurationVar(&startupTimeout, "startup-timeout", startupTimeout, "How long to wait for the virtual-kubelet to start") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not used anymore and needs to be removed.
…)" This reverts commit 1e03f57.
1. Routes were not setup and causing panics 2. The CA was not being loaded into the webhook auth and as such only token auth was available. Signed-off-by: Brian Goff <cpuguy83@gmail.com>
Fix webhook certificate auth with nodeutil
token auth was available.