Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
7dd821f
EFS CSI Driver operator changes
dpdifferent1 Jan 8, 2026
f5ce69b
Modified EFS Operator Argo condition
dpdifferent1 Feb 5, 2026
8f09766
RDS Testing
amitpandey0217 Feb 16, 2026
4875f22
Adding missing efs driver changes o values.yaml
amitpandey0217 Feb 16, 2026
a2f4185
Mongo fix test
amitpandey0217 Feb 17, 2026
75771fa
RDS Connection string
amitpandey0217 Feb 17, 2026
a4a215a
RDS Connection string
amitpandey0217 Feb 17, 2026
3de8049
RDS Connection string
amitpandey0217 Feb 17, 2026
4499213
RDS testing
amitpandey0217 Feb 17, 2026
29fa04b
RDS testing
amitpandey0217 Feb 17, 2026
a8a518e
RDS testing
amitpandey0217 Feb 17, 2026
0a4ea80
Merge branch 'gitops-efs-csi-operator' of https://github.com/ibm-mas/…
dpdifferent1 Feb 17, 2026
bd37ca1
RDS testing
amitpandey0217 Feb 17, 2026
77067cb
changes for EFS config
dpdifferent1 Feb 17, 2026
21518bd
Merge branch 'gitops-efs-csi-operator' of https://github.com/ibm-mas/…
dpdifferent1 Feb 17, 2026
55dc00c
corrected condition syntax
dpdifferent1 Feb 17, 2026
228d4d1
Changed subscription namespace
dpdifferent1 Feb 17, 2026
79a9e72
RDS testing
amitpandey0217 Feb 18, 2026
206c5ac
RDS testing
amitpandey0217 Feb 18, 2026
2b248e2
RDS testing
amitpandey0217 Feb 18, 2026
16a1a7c
RDS testing
amitpandey0217 Feb 18, 2026
487fef1
RDS testing
amitpandey0217 Feb 18, 2026
582fba9
RDS testing
amitpandey0217 Feb 18, 2026
afe98d0
RDS testing
amitpandey0217 Feb 18, 2026
f0a59a9
RDS testing
amitpandey0217 Feb 18, 2026
74b0645
RDS testing
amitpandey0217 Feb 18, 2026
165998d
RDS testing
amitpandey0217 Feb 18, 2026
b2db152
RDS testing
amitpandey0217 Feb 18, 2026
6403a3d
RDS testing
amitpandey0217 Feb 19, 2026
df2f69e
RDS testing
amitpandey0217 Feb 19, 2026
ddecf61
RDS testing
amitpandey0217 Feb 19, 2026
13014a8
RDS testing
amitpandey0217 Feb 19, 2026
12ec2e1
EFS Changes v1
amitpandey0217 Feb 24, 2026
34bee9f
Added target namespace to operator group
dpdifferent1 Feb 24, 2026
0cfee54
Changed operator group config
dpdifferent1 Feb 24, 2026
5c72403
Changed subscription namespace
dpdifferent1 Feb 24, 2026
ce1da66
Confirmed namespaces for EFS Argo apps
dpdifferent1 Feb 25, 2026
73d534e
Merge branch into MASCORE-10777
amitpandey0217 Feb 25, 2026
4f7e97c
EFS static field removal
amitpandey0217 Feb 25, 2026
6514dab
Review Comments
amitpandey0217 Feb 26, 2026
88f66ce
Modified condition for efs_csi_driver Argo App
dpdifferent1 Mar 2, 2026
439772d
Changed condition inside cluster-root efs_csi_driver
dpdifferent1 Mar 2, 2026
920a153
Added default for subscription_source_namespace & made channel variable
dpdifferent1 Mar 2, 2026
4dff051
Merge branch 'main' into MASCORE-10777
whitfiea Mar 2, 2026
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
apiVersion: operators.coreos.com/v1
kind: OperatorGroup
metadata:
name: openshift-operators
namespace: "{{ .Values.subscription_source_namespace }}"
annotations:
argocd.argoproj.io/sync-wave: "016"
{{- if .Values.custom_labels }}
labels:
{{ .Values.custom_labels | toYaml | indent 4 }}
{{- end }}
spec: {}
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
apiVersion: v1
---
kind: Secret
apiVersion: v1
metadata:
name: aws-efs-cloud-credentials
namespace: openshift-cluster-csi-drivers
namespace: "{{ .Values.subscription_source_namespace }}"
annotations:
argocd.argoproj.io/sync-wave: "018"
cloudcredential.openshift.io/secret-sync: "true"
{{- if .Values.custom_labels }}
labels:
{{ .Values.custom_labels | toYaml | indent 4 }}
{{- end }}
type: Opaque
stringData:
credentials: |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,18 @@
apiVersion: operators.coreos.com/v1alpha1
kind: Subscription
metadata:
annotations:
argocd.argoproj.io/sync-wave: "017"
name: aws-efs-csi-driver-operator
namespace: "{{ .Values.subscription_source_namespace }}"
labels:
operators.coreos.com/aws-efs-csi-driver-operator.openshift-cluster-csi-drivers: ""
name: aws-efs-csi-driver-operator
namespace: openshift-cluster-csi-drivers
{{- if .Values.custom_labels }}
{{ .Values.custom_labels | toYaml | indent 4 }}
{{- end }}
spec:
channel: "{{ .Values.channel }}"
installPlanApproval: Automatic
installPlanApproval: "Automatic"
name: aws-efs-csi-driver-operator
source: "{{ .Values.catalog_source }}"
sourceNamespace: "{{ .Values.catalog_source_namespace }}"
sourceNamespace: "{{ .Values.catalog_source_namespace }}"
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
---
apiVersion: operator.openshift.io/v1
kind: ClusterCSIDriver
metadata:
name: efs.csi.aws.com
annotations:
argocd.argoproj.io/sync-wave: "019"
spec:
managementState: Managed
managementState: Managed

This file was deleted.

6 changes: 6 additions & 0 deletions cluster-applications/000-efs-csi-driver/values.yaml
Original file line number Diff line number Diff line change
@@ -1 +1,7 @@
---
efs_csi_driver:
catalog_source: redhat-operators
catalog_source_namespace: openshift-marketplace
channel: stable
subscription_source_namespace: openshift-cluster-csi-drivers
role_arn: ""
1 change: 0 additions & 1 deletion instance-applications/120-ibm-dbs-rds-database/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ name: ibm-dbs-rds-database
description: IBM DB2RDS Database
type: application
version: 1.0.0

dependencies:
- name: junitreporter
version: 1.0.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ data:
f"UID={username};"
f"PWD={password};"
f"SECURITY=SSL;"
f"SSLVersion=TLSv1.2;"
f"SSLServerCertificate={ssl_cert_path};"
)

Expand All @@ -50,9 +51,9 @@ data:
f"UID={username};"
f"PWD={password};"
f"SECURITY=SSL;"
f"SSLVersion=TLSv1.2;"
f"SSLServerCertificate={ssl_cert_path};"
)

try:
admin_conn = db2.connect(conn_rds_admin_str, "", "")
print("✅ Connected to Db2 as rdsadmin user")
Expand Down
2 changes: 1 addition & 1 deletion instance-applications/120-ibm-dbs-rds-database/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ password: "dummy"

db2_rds_instance_name: dbs-rds-inst1-manage
scriptConfigMapName: dbs-rds-init-script
mas_application_id:
mas_application_id:
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
{{- if not (empty .Values.efs_csi_driver) }}

---
apiVersion: argoproj.io/v1alpha1
kind: Application
Expand Down Expand Up @@ -43,7 +42,7 @@ spec:
catalog_source: {{ .Values.efs_csi_driver.catalog_source }}
catalog_source_namespace: {{ .Values.efs_csi_driver.catalog_source_namespace }}
role_arn: {{ .Values.efs_csi_driver.role_arn }}

subscription_source_namespace: {{ .Values.efs_csi_driver.subscription_source_namespace | default "openshift-cluster-csi-drivers" }}
junitreporter:
reporter_name: "efs-csi-driver"
cluster_id: "{{ .Values.cluster.id }}"
Expand Down
3 changes: 2 additions & 1 deletion root-applications/ibm-mas-cluster-root/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,5 @@ devops:

custom_sa:
custom_sa_namespace:
custom_sa_details:
custom_sa_details:

2 changes: 1 addition & 1 deletion root-applications/ibm-mas-instance-root/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ run_sanity_test: false
devops:
mongo_uri:
build_number:

# Flags to opt out of adoption metric reporting. Defaults to true (reporting enabled)
mas_feature_usage: true
mas_deployment_progression: true
Expand Down
Loading