-
Notifications
You must be signed in to change notification settings - Fork 194
docs: add OS_CLUSTER_VERSION to env.example and align dev docs #4670
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: master
Are you sure you want to change the base?
Changes from all commits
36a9d4c
e5664c4
52a3e19
96d70c1
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 |
|---|---|---|
|
|
@@ -7,8 +7,9 @@ export AZURE_EXTENSION_DEV_SOURCES="$(pwd)/python" | |
| export CLUSTER_RESOURCEGROUP="${AZURE_PREFIX}-v4-$LOCATION" | ||
| export CLUSTER_NAME="${AZURE_PREFIX}-aro-cluster" | ||
| export CLUSTER_VNET="${AZURE_PREFIX}-aro-vnet" | ||
| export ARO_IMAGE=arointsvc.azurecr.io/aro:latest | ||
| export ARO_IMAGE=arointsvc.azurecr.io/aro:latest | ||
| export ARO_ENABLE_OUTBOUND_HTTP_LOGGING=false | ||
| # export OS_CLUSTER_VERSION="${OS_CLUSTER_VERSION:-4.19.15}" | ||
|
||
|
|
||
| # You'll need these to create MIWI clusters with your local RP, but you can comment them | ||
| # out or remove them from your env file if you're only going to be creating service principal | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -1146,6 +1146,7 @@ func (c *Cluster) ensureDefaultVersionInCosmosdb(ctx context.Context) error { | |
| // if it is not overridden with ARO_HIVE_DEFAULT_INSTALLER_PULLSPEC or LiveConfig | ||
| InstallerPullspec: fmt.Sprintf("arointsvc.azurecr.io/aro-installer:release-%s", version.DefaultInstallStream.Version.MinorVersion()), | ||
| Enabled: true, | ||
| Default: true, | ||
| }, | ||
|
Comment on lines
1147
to
1150
|
||
| }) | ||
| if err != nil { | ||
|
|
||
| Original file line number | Diff line number | Diff line change | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -38,7 +38,7 @@ type Stream struct { | |||||||||||||
| PullSpec string `json:"-"` | ||||||||||||||
| } | ||||||||||||||
|
|
||||||||||||||
| // Install stream data for production and INT has moved to RP-Config. | ||||||||||||||
| // DefaultInstallStream does not wrap data for production and INT which has moved to RP-Config. | ||||||||||||||
| // This default is left here ONLY for use by local development mode, | ||||||||||||||
| // until we can come up with a better solution. | ||||||||||||||
|
Comment on lines
+41
to
43
|
||||||||||||||
| // DefaultInstallStream does not wrap data for production and INT which has moved to RP-Config. | |
| // This default is left here ONLY for use by local development mode, | |
| // until we can come up with a better solution. | |
| // DefaultInstallStream is NOT used for production or INT; install stream data for those | |
| // environments is configured via RP-Config. This constant is kept only as a fallback for | |
| // local development mode until we can come up with a better solution. |
Uh oh!
There was an error while loading. Please reload this page.