Skip to content

Commit e6f6bea

Browse files
authored
Fix bug for mcr path in mooncake cloud (#1132)
* fix bug for mcr path in mooncake region * update readme
1 parent a56c0e5 commit e6f6bea

File tree

4 files changed

+1
-17
lines changed

4 files changed

+1
-17
lines changed

charts/azuremonitor-containers/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ The following table lists the configurable parameters of the MSOMS chart and the
8585
| ----------------------- | --------------------------------------------------------| --------------------------------------------------------------------------------------------------------------------------- |
8686
| `amalogs.image.tag` | image tag for Linux Agent. | Most recent release |
8787
| `amalogs.image.tagWindows` | image tag for Windows Agent. | Most recent release |
88-
| `amalogs.image.imagerepo` | image repo for Liunx & Windows. | For Public and US Govt cloud: mcr.microsoft.com/azuremonitor/containerinsights/ciprod and For China Cloud: mcr.azk8s.cn/azuremonitor/containerinsights/ciprod
88+
| `amalogs.image.imagerepo` | image repo for Liunx & Windows. | Image repo path is mcr.microsoft.com/azuremonitor/containerinsights/ciprod
8989
| `amalogs.image.pullPolicy` | image pull policy for the agent. | IfNotPresent |
9090
| `amalogs.secret.wsid` | Azure Log analytics workspace id | Does not have a default value, needs to be provided |
9191
| `amalogs.secret.key` | Azure Log analytics workspace key | Does not have a default value, needs to be provided |

charts/azuremonitor-containers/templates/ama-logs-daemonset-windows.yaml

-4
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,7 @@ spec:
4545
{{- end }}
4646
containers:
4747
- name: ama-logs-windows
48-
{{- if eq (.Values.amalogs.domain | lower) "opinsights.azure.cn" }}
49-
image: "mcr.azk8s.cn/azuremonitor/containerinsights/ciprod:{{ .Values.amalogs.image.tagWindows }}"
50-
{{- else }}
5148
image: {{ printf "%s:%s" .Values.amalogs.image.repo .Values.amalogs.image.tagWindows }}
52-
{{- end }}
5349
imagePullPolicy: IfNotPresent
5450
resources:
5551
{{ toYaml .Values.amalogs.resources.daemonsetwindows | indent 9 }}

charts/azuremonitor-containers/templates/ama-logs-daemonset.yaml

-8
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,7 @@ spec:
4848
{{- .Values.Azure.Identity.MSIAdapterYaml | nindent 7 }}
4949
{{- end }}
5050
- name: ama-logs
51-
{{- if eq (.Values.amalogs.domain | lower) "opinsights.azure.cn" }}
52-
image: "mcr.azk8s.cn/azuremonitor/containerinsights/ciprod:{{ .Values.amalogs.image.tag }}"
53-
{{- else }}
5451
image: {{ printf "%s:%s" .Values.amalogs.image.repo .Values.amalogs.image.tag }}
55-
{{- end }}
5652
imagePullPolicy: IfNotPresent
5753
resources:
5854
{{ toYaml .Values.amalogs.resources.daemonsetlinux | indent 9 }}
@@ -178,11 +174,7 @@ spec:
178174
timeoutSeconds: 15
179175
{{- if .Values.amalogs.sidecarscraping }}
180176
- name: ama-logs-prometheus
181-
{{- if eq (.Values.amalogs.domain | lower) "opinsights.azure.cn" }}
182-
image: "mcr.azk8s.cn/azuremonitor/containerinsights/ciprod:{{ .Values.amalogs.image.tag }}"
183-
{{- else }}
184177
image: {{ printf "%s:%s" .Values.amalogs.image.repo .Values.amalogs.image.tag }}
185-
{{- end }}
186178
imagePullPolicy: IfNotPresent
187179
resources:
188180
{{ toYaml .Values.amalogs.resources.daemonsetlinuxsidecar | indent 9 }}

charts/azuremonitor-containers/templates/ama-logs-deployment.yaml

-4
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,7 @@ spec:
4444
{{- .Values.Azure.Identity.MSIAdapterYaml | nindent 7 }}
4545
{{- end }}
4646
- name: ama-logs
47-
{{- if eq (.Values.amalogs.domain | lower) "opinsights.azure.cn" }}
48-
image: "mcr.azk8s.cn/azuremonitor/containerinsights/ciprod:{{ .Values.amalogs.image.tag }}"
49-
{{- else }}
5047
image: {{ printf "%s:%s" .Values.amalogs.image.repo .Values.amalogs.image.tag }}
51-
{{- end }}
5248
imagePullPolicy: IfNotPresent
5349
resources:
5450
{{ toYaml .Values.amalogs.resources.deployment | indent 9 }}

0 commit comments

Comments
 (0)