Skip to content
Merged
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
2 changes: 1 addition & 1 deletion sources/airm/0.3.2/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ dependencies:
- name: airm-api
version: 0.3.2
- name: airm-dispatcher
version: 0.3.0
version: 0.3.2
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,10 @@ spec:
labels:
app: "{{ .Release.Name }}-api"
spec:
{{- with .Values.airm.backend.imagePullSecrets }}
imagePullSecrets:
{{- toYaml . | nindent 8 }}
{{- end }}
containers:
- env:
- name: OPENID_CLIENT_ID
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,10 @@ spec:
labels:
app: "{{ .Release.Name }}-ui"
spec:
{{- with .Values.airm.frontend.imagePullSecrets }}
imagePullSecrets:
{{- toYaml . | nindent 8 }}
{{- end }}
containers:
- name: airm-ui
env:
Expand Down
4 changes: 2 additions & 2 deletions sources/airm/0.3.2/charts/airm-api/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ airm:
frontend:
image:
repository: amdenterpriseai/airm-ui
tag: 0.3.0
tag: 0.3.2
pullPolicy: IfNotPresent
servicePort: 80
resources:
Expand All @@ -117,7 +117,7 @@ airm:
backend:
image:
repository: amdenterpriseai/airm-api
tag: 0.3.0
tag: 0.3.2
pullPolicy: IfNotPresent

servicePort: 80
Expand Down
2 changes: 1 addition & 1 deletion sources/airm/0.3.2/charts/airm-dispatcher/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.3.0
version: 0.3.2

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ rules:
resources: ["aimservices", "aimmodels", "aimmodelcaches", "aimservicetemplates", "aimruntimeconfigs", "aimtemplatecaches"]
verbs: ["get", "list", "watch", "delete"]
- apiGroups: ["gateway.networking.k8s.io"]
resources: ["httproutes"]
resources: ["httproutes", "gateways"]
verbs: ["get", "list", "watch", "delete"]
- apiGroups: ["config.kaiwo.silogen.ai"]
resources: ["kaiwoconfigs"]
Expand Down Expand Up @@ -137,7 +137,7 @@ rules:
resources: ["aimservices", "aimmodels", "aimmodelcaches", "aimservicetemplates", "aimruntimeconfigs", "aimtemplatecaches"]
verbs: ["*"]
- apiGroups: ["gateway.networking.k8s.io"]
resources: ["httproutes"]
resources: ["httproutes", "gateways"]
verbs: ["*"]
- apiGroups: [""]
resources: ["secrets"]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,10 @@ spec:
app: "{{ .Release.Name }}-dispatcher"
spec:
serviceAccountName: "{{ .Release.Name }}-dispatcher-sa"
{{- with .Values.airm.dispatcher.imagePullSecrets }}
imagePullSecrets:
{{- toYaml . | nindent 8 }}
{{- end }}
initContainers:
- name: check-rabbitmq-is-ready
command:
Expand Down
2 changes: 1 addition & 1 deletion sources/airm/0.3.2/charts/airm-dispatcher/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ airm:
dispatcher:
image:
repository: amdenterpriseai/airm-dispatcher
tag: 0.3.0
tag: 0.3.2
pullPolicy: IfNotPresent
servicePort: 80
env:
Expand Down