Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
kota2and3kan committed Nov 20, 2024
1 parent da07378 commit 27f7a6b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions charts/scalardl-audit/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,8 @@ Current chart version is `3.0.0-SNAPSHOT`
| envoy.service.ports.envoy.targetPort | int | `40051` | envoy k8s internal name |
| envoy.service.type | string | `"ClusterIP"` | service types in kubernetes |
| fullnameOverride | string | `""` | String to fully override scalardl-audit.fullname template |
| global.azure | object | `{"images":{"envoy":{"image":"scalar-envoy","registry":"scalar.azurecr.io","tag":"2.0.0-SNAPSHOT"},"scalardbCluster":{"image":"scalardl-auditor-azure-payg","registry":"scalar.azurecr.io","tag":"4.0.0-SNAPSHOT"}}}` | Azure Marketplace specific configurations. |
| global.azure | object | `{"images":{"envoy":{"image":"scalar-envoy","registry":"scalar.azurecr.io","tag":"2.0.0-SNAPSHOT"},"scalardlAuditor":{"image":"scalardl-auditor-azure-payg","registry":"scalar.azurecr.io","tag":"4.0.0-SNAPSHOT"}}}` | Azure Marketplace specific configurations. |
| global.azure.images.envoy | object | `{"image":"scalar-envoy","registry":"scalar.azurecr.io","tag":"2.0.0-SNAPSHOT"}` | Container image of Envoy for Azure Marketplace. |
| global.azure.images.scalardbCluster | object | `{"image":"scalardl-auditor-azure-payg","registry":"scalar.azurecr.io","tag":"4.0.0-SNAPSHOT"}` | Container image of ScalarDL Auditor for Azure Marketplace. |
| global.azure.images.scalardlAuditor | object | `{"image":"scalardl-auditor-azure-payg","registry":"scalar.azurecr.io","tag":"4.0.0-SNAPSHOT"}` | Container image of ScalarDL Auditor for Azure Marketplace. |
| global.platform | string | `""` | Specify the platform that you use. This configuration is for internal use. |
| nameOverride | string | `""` | String to partially override scalardl-audit.fullname template (will maintain the release name) |
2 changes: 1 addition & 1 deletion charts/scalardl-audit/templates/auditor/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ spec:
securityContext:
{{- toYaml .Values.auditor.securityContext | nindent 12 }}
{{- if eq .Values.global.platform "azure" }}
image: "{{ .Values.global.azure.images.scalardbCluster.registry }}/{{ .Values.global.azure.images.scalardbCluster.image }}:{{ .Values.global.azure.images.scalardbCluster.tag }}"
image: "{{ .Values.global.azure.images.scalardlAuditor.registry }}/{{ .Values.global.azure.images.scalardlAuditor.image }}:{{ .Values.global.azure.images.scalardlAuditor.tag }}"
{{- else }}
image: "{{ .Values.auditor.image.repository }}:{{ .Values.auditor.image.version }}"
{{- end }}
Expand Down
2 changes: 1 addition & 1 deletion charts/scalardl-audit/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -456,7 +456,7 @@
}
}
},
"scalardbCluster": {
"scalardlAuditor": {
"type": "object",
"properties": {
"image": {
Expand Down
2 changes: 1 addition & 1 deletion charts/scalardl-audit/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ global:
azure:
images:
# -- Container image of ScalarDL Auditor for Azure Marketplace.
scalardbCluster:
scalardlAuditor:
tag: "4.0.0-SNAPSHOT"
image: "scalardl-auditor-azure-payg"
registry: "scalar.azurecr.io"
Expand Down

0 comments on commit 27f7a6b

Please sign in to comment.