Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/content/reference/cli/rad_initialize.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,11 @@ rad init --set global.imageRegistry=myregistry.azurecr.io,global.imageTag=0.48

## Initialize with private registry and image pull secrets
## Note: Secret must be created in radius-system namespace first
rad init --set global.imageRegistry=myregistry.azurecr.io --set-string 'global.imagePullSecrets[0].name=regcred'
rad init --set global.imageRegistry=myregistry.azurecr.io --set 'global.imagePullSecrets[0].name=regcred'

## Initialize with multiple image pull secrets for different registries
rad init --set-string 'global.imagePullSecrets[0].name=azure-cred' \
--set-string 'global.imagePullSecrets[1].name=aws-cred'
rad init --set 'global.imagePullSecrets[0].name=azure-cred' \
--set 'global.imagePullSecrets[1].name=aws-cred'

## Initialize with custom values from a file
rad init --set-file global.rootCA.cert=/path/to/rootCA.crt
Expand Down
6 changes: 3 additions & 3 deletions docs/content/reference/cli/rad_install_kubernetes.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,11 @@ rad install kubernetes --set global.imageRegistry=myregistry.azurecr.io,global.i

# Install Radius with private registry and image pull secrets
# Note: Secret must be created in radius-system namespace first
rad install kubernetes --set global.imageRegistry=myregistry.azurecr.io --set-string 'global.imagePullSecrets[0].name=regcred'
rad install kubernetes --set global.imageRegistry=myregistry.azurecr.io --set 'global.imagePullSecrets[0].name=regcred'

# Install Radius with multiple image pull secrets for different registries
rad install kubernetes --set-string 'global.imagePullSecrets[0].name=azure-cred' \
--set-string 'global.imagePullSecrets[1].name=aws-cred'
rad install kubernetes --set 'global.imagePullSecrets[0].name=azure-cred' \
--set 'global.imagePullSecrets[1].name=aws-cred'

# Install Radius with the intermediate root CA certificate in the current Kubernetes context
rad install kubernetes --set-file global.rootCA.cert=/path/to/rootCA.crt
Expand Down
6 changes: 3 additions & 3 deletions docs/content/reference/cli/rad_upgrade_kubernetes.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,11 @@ rad upgrade kubernetes --set global.imageRegistry=myregistry.azurecr.io,global.i

# Upgrade Radius with private registry and image pull secrets
# Note: Secret must be created in radius-system namespace first
rad upgrade kubernetes --set global.imageRegistry=myregistry.azurecr.io --set-string 'global.imagePullSecrets[0].name=regcred'
rad upgrade kubernetes --set global.imageRegistry=myregistry.azurecr.io --set 'global.imagePullSecrets[0].name=regcred'

# Upgrade Radius with multiple image pull secrets for different registries
rad upgrade kubernetes --set-string 'global.imagePullSecrets[0].name=azure-cred' \
--set-string 'global.imagePullSecrets[1].name=aws-cred'
rad upgrade kubernetes --set 'global.imagePullSecrets[0].name=azure-cred' \
--set 'global.imagePullSecrets[1].name=aws-cred'

# Upgrade to a specific version
rad upgrade kubernetes --version 0.47.0
Expand Down
Loading