-
Notifications
You must be signed in to change notification settings - Fork 259
test: (scriptless) Enable scriptless phase 3 in AB e2es #8453
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
base: main
Are you sure you want to change the base?
Changes from all commits
042c0f4
ffa89ce
2c493c8
1bb406d
02b46dc
85702a0
dba6573
b8e9aa5
9e45dde
eda17a8
eed133e
af43215
0b51e0c
af47c9e
84fb1ba
b050969
c181e25
1eb9ade
093c4f7
1e7befc
603e7e3
60d6e92
e7c279c
f4adeb9
50768f5
428dbcf
d4ed38a
2ef3c72
425c7ff
442c525
2126d61
c6675f0
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -33,7 +33,7 @@ func executeBootstrapTemplate(inputContract *aksnodeconfigv1.Configuration) (str | |
| func getCSEEnv(config *aksnodeconfigv1.Configuration) map[string]string { | ||
| cloudProviderSettings := getCloudProviderSettings(config) | ||
| env := map[string]string{ | ||
| "PROVISION_OUTPUT": "/var/log/azure/cluster-provision.log", | ||
| "PROVISION_OUTPUT": "/var/log/azure/cluster-provision-cse-output.log", | ||
| "MOBY_VERSION": "", | ||
| "CLOUDPROVIDER_BACKOFF": fmt.Sprintf("%v", cloudProviderSettings.backoff), | ||
| "CLOUDPROVIDER_BACKOFF_MODE": cloudProviderSettings.backoffMode, | ||
|
|
@@ -47,7 +47,7 @@ func getCSEEnv(config *aksnodeconfigv1.Configuration) map[string]string { | |
| "CLOUDPROVIDER_RATELIMIT_BUCKET": fmt.Sprintf("%v", cloudProviderSettings.rateLimitBucket), | ||
| "CLOUDPROVIDER_RATELIMIT_BUCKET_WRITE": fmt.Sprintf("%v", cloudProviderSettings.rateLimitBucketWrite), | ||
| "CLI_TOOL": "ctr", | ||
| "NETWORK_MODE": "transparent", | ||
| "NETWORK_MODE": "", | ||
| "ADMINUSER": getLinuxAdminUsername(config.GetLinuxAdminUsername()), | ||
| "TENANT_ID": config.GetAuthConfig().GetTenantId(), | ||
| "KUBERNETES_VERSION": config.GetKubernetesVersion(), | ||
|
|
@@ -194,7 +194,8 @@ func getCSEEnv(config *aksnodeconfigv1.Configuration) map[string]string { | |
| "SERVICE_ACCOUNT_IMAGE_PULL_DEFAULT_TENANT_ID": config.GetServiceAccountImagePullProfile().GetDefaultTenantId(), | ||
| "IDENTITY_BINDINGS_LOCAL_AUTHORITY_SNI": config.GetServiceAccountImagePullProfile().GetLocalAuthoritySni(), | ||
| "CSE_TIMEOUT": getCSETimeout(config), | ||
|
lilypan26 marked this conversation as resolved.
|
||
| "SKIP_WAAGENT_HOLD": "true", | ||
| "SKIP_WAAGENT_HOLD": "false", | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this needs to be true, because scriptless mode we always never hold waagent
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yep this would be a difference compared to non scriptless path, may be we can have a list of keys which are ok to ignore |
||
| "NETWORK_ISOLATED_CLUSTER_TEST_MODE": "false", // temp: needs to be added to config | ||
| } | ||
|
|
||
| for i, cert := range config.CustomCaCerts { | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.