-
Notifications
You must be signed in to change notification settings - Fork 99
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
# Description rad install --set command can now be used to set helm values. This PR is to refactor helm values.yaml structure and provide final documentation for different values that can be set using rad install set. ## Issue reference <!-- We strive to have all PR being opened based on an issue, where the problem or feature have been discussed prior to implementation. --> Fixes: #5343 ## Checklist Please make sure you've completed the relevant tasks for this PR, out of the following list: * [ ] Code compiles correctly * [ ] Adds necessary unit tests for change * [ ] Adds necessary E2E tests for change * [ ] Unit tests passing * [ ] Extended the documentation / Created issue for it
- Loading branch information
Showing
11 changed files
with
55 additions
and
107 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
deploy/Chart/charts/appcore-rp/Chart.yaml → deploy/Chart/charts/radius-rp/Chart.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,25 @@ | ||
de: | ||
image: radius.azurecr.io/deployment-engine | ||
tag: latest | ||
ucp: | ||
image: radius.azurecr.io/ucpd | ||
tag: latest | ||
# provider can be also set using rad env init --provider-aws | ||
# provider: | ||
# aws: | ||
# region:"us-east" | ||
radius-rp: | ||
image: radius.azurecr.io/appcore-rp | ||
tag: latest | ||
publicEndpointOverride: "" | ||
global: | ||
engine: | ||
image: radius.azurecr.io/deployment-engine | ||
tag: latest | ||
appcorerp: | ||
image: radius.azurecr.io/appcore-rp | ||
tag: latest # Tag for appcore-rp image. | ||
provider: | ||
azure: {} | ||
ucp: | ||
image: radius.azurecr.io/ucpd | ||
tag: latest # Tag for ucp image. | ||
radius: | ||
container: radius.azurecr.io/radius-controller | ||
tag: latest # Tag for radius-controller image. | ||
rp: | ||
provider: | ||
azure: {} | ||
publicEndpointOverride: "" | ||
prometheus: | ||
enabled: true | ||
path: "/metrics" | ||
port: 9090 | ||
# | ||
# Configure global.zipkin.url to enable distributed trace. Replace the example url | ||
# below with the environment specific url | ||
# zipkin: | ||
# url: "http://jaeger-collector.radius-monitoring.svc.cluster.local:9411/api/v2/spans" | ||
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters