Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v4.1.3 config changes added #117

Merged
merged 1 commit into from
Apr 10, 2023
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
24 changes: 12 additions & 12 deletions charts/isdargo/rcimages-values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ forwarder:
# Update the externalName(i.e controller URL) in order to connect to external agent (i.e ISD and Argo running in different cluster with DNS else leave as it is)
externalName:
agent:
image: quay.io/opsmxpublic/forwarder-agent:v3.5.9
image: quay.io/opsmxpublic/agent-client:v4.2.3
image:
repository: quay.io/opsmxpublic/forwarder-controller
tag: v3.5.9
repository: quay.io/opsmxpublic/agent-controller
tag: v4.2.3
########################################################################################
## Info related to registry where OEA images are stored
imageCredentials:
Expand Down Expand Up @@ -189,7 +189,7 @@ argo-rollouts:
auditClient:
image:
repository: ubi8-oes-audit-client
tag: v4.1.3.b1
tag: v4.1.3.b2
###################################################
gate:
image:
Expand All @@ -199,27 +199,27 @@ gate:
sapor:
image:
repository: ubi8-oes-sapor
tag: v4.1.3.b1
tag: v4.1.3.b2
###################################################
platform:
image:
repository: ubi8-oes-platform
tag: v4.1.3.b1
tag: v4.1.3.b2
###################################################
autopilot:
image:
repository: ubi8-oes-autopilot
tag: v4.1.3.b1
tag: v4.1.3.b2
###################################################
ui:
image:
repository: ubi8-oes-ui
tag: v4.1.3.b1.1
tag: v4.1.3.b2
###################################################
dashboard:
image:
repository: ubi8-oes-dashboard
tag: v4.1.2
tag: v4.1.3.b2
#####################################################
datascience:
image:
Expand All @@ -238,12 +238,12 @@ visibility:
#####################################################
carinamanager:
image:
tag: v1.12.7
tag: v1.13.1
#####################################################
carinainstance:
image:
tag: v1.12.7
tag: v1.13.1
#####################################################
vela:
image:
tag: v1.4.2
tag: v1.4.3
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ data:
standardErrorCodesMapping.ISD-IsNotFound-404-04 = ISD-IsNotFound-404-04 : {0} - {1} not found {2}.
standardErrorCodesMapping.ISD-Unavailable-404-05 = ISD-Unavailable-404-05 : {0} - {1} is unavailable.
standardErrorCodesMapping.ISD-AlreadyExists-409-01 = ISD-AlreadyExists-409-01 : {0} - {1} already exists: {2}
standardErrorCodesMapping.ISD-Disconnected-409-02 = ISD-Disconnected-409-02 : {0} - {1}
standardErrorCodesMapping.ISD-FailedToDelete-412-01 = ISD-FailedToDelete-412-01 : {0} - Unable to delete {1} as {1} is already in use !
standardErrorCodesMapping.ISD-FailedToDeletePolicy-412-02 = ISD-FailedToDeletePolicy-412-02 : {0} - Unable to delete policy as it is already in use for {1} gate !
standardErrorCodesMapping.ISD-FailedToUpdate-412-03 = ISD-FailedToUpdate-412-03 : {0} - Unable to update {1} as {1} is already in use !
Expand Down
3 changes: 3 additions & 0 deletions charts/isdargo/templates/forwarder/oes-forwarder-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ data:
serviceAuth:
currentKeyName: "public.pem"
headerMutationKeyName: "public.pem"
agentAuth:
currentKeyName: authtoken
secretsPath: /app/secrets/agentAuth
services:
outgoingServices:
- name: front50
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,9 @@ spec:
- name: jwt-secret
mountPath: /app/secrets/serviceAuth
readOnly: true
- name: authtoken
readOnly: true
mountPath: /app/secrets/agentAuth
resources:
requests:
memory: "64Mi"
Expand All @@ -68,6 +71,10 @@ spec:
{{ toYaml .Values.global.tolerations | indent 8 }}
{{- end }}
volumes:
- name: authtoken
secret:
secretName: opsmx-agent-controller-auth
defaultMode: 420
- name: ca-secret
secret:
secretName: ca-secret
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
apiVersion: v1
kind: Secret
metadata:
name: opsmx-agent-controller-auth
type: Opaque
data:
authtoken: ${jwtSecret-base64}