Skip to content

Commit 5b91209

Browse files
committed
update labels and comparision script
Signed-off-by: kunal-511 <[email protected]>
1 parent fd16b2c commit 5b91209

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+1262
-105
lines changed
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
dependencies:
2+
- name: argo-workflows
3+
repository: https://argoproj.github.io/argo-helm
4+
version: 0.40.14
5+
- name: minio
6+
repository: https://charts.min.io/
7+
version: 5.0.15
8+
- name: mysql
9+
repository: https://charts.bitnami.com/bitnami
10+
version: 14.0.3
11+
- name: postgresql
12+
repository: https://charts.bitnami.com/bitnami
13+
version: 16.0.6
14+
digest: sha256:addbacd4a800daf2fbf006468d352c6749df1a4afaa346d6d44abc62773393bb
15+
generated: "2025-10-09T20:37:41.761712064+05:30"
Binary file not shown.
20.8 KB
Binary file not shown.
67.6 KB
Binary file not shown.
73.4 KB
Binary file not shown.

experimental/helm/charts/pipelines/ci/values-aws-enhanced.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ externalDatabase:
3535
database: mlpipeline
3636
username: "YOUR_RDS_USERNAME"
3737
password: "YOUR_RDS_PASSWORD"
38-
existingSecret: "mysql-secret"
38+
existingSecret: ""
3939

4040
# Object Storage Configuration
4141
minio:

experimental/helm/charts/pipelines/ci/values-azure-enhanced.yaml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ externalDatabase:
3333
host: "[SQLSERVERNAME].mysql.database.azure.com"
3434
port: 3306
3535
database: mlpipeline
36-
username: "YOUR_AZURE_SQL_USERNAME@[SQLSERVERNAME]"
37-
password: "YOUR_AZURE_SQL_PASSWORD"
36+
username: "[SQLUSER]@[SQLSERVERNAME]"
37+
password: "[SQLPASS]"
3838
existingSecret: ""
3939

4040
# Object Storage Configuration
@@ -46,9 +46,10 @@ objectStore:
4646
secure: true
4747
bucketName: "mlpipeline"
4848
azure:
49-
storageAccount: "yourstorageaccount"
49+
storageAccount: "[STORAGEACCOUNTNAME]"
50+
accountName: "[STORAGEACCOUNTNAME]"
5051
container: "mlpipeline"
51-
accessKey: "YOUR_STORAGE_ACCOUNT_KEY"
52+
accountKey: "[STORAGEACCOUNTKEY]"
5253

5354
# Database names
5455
database:
@@ -76,7 +77,7 @@ env:
7677
resourceGroup: "yourResourceGroup"
7778
storageAccount: "yourstorageaccount"
7879
sql:
79-
enabled: false
80+
enabled: true
8081
serverName: "[SQLSERVERNAME]"
8182
database: "mlpipeline"
8283
blob:
@@ -196,7 +197,7 @@ ui:
196197
# Third-party components configuration
197198
thirdParty:
198199
minio:
199-
enabled: false # Azure uses custom minio-azure-gateway, not the built-in MinIO
200+
enabled: true # Enable to create the mlpipeline-minio-artifact secret
200201
mysql:
201202
enabled: false # Azure uses external MySQL/Azure SQL
202203

experimental/helm/charts/pipelines/ci/values-dev-enhanced.yaml

Lines changed: 42 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ global:
55
namespace: kubeflow
66
imageRegistry: ghcr.io/kubeflow
77
imageTag: "master"
8+
version: "2.14.3"
89
imagePullPolicy: IfNotPresent
910

1011
# Installation mode
@@ -14,15 +15,22 @@ installMode:
1415
enabled: false
1516

1617
crds:
17-
install: true
18+
install: false
1819
application: true
1920

2021
# Cache deployer for generic mode
2122
cacheDeployer:
2223
enabled: true
2324
serviceAccount:
24-
create: true
25-
25+
create: false
26+
replicas: 1
27+
resources:
28+
requests:
29+
cpu: 50m
30+
memory: 64Mi
31+
limits:
32+
cpu: 100m
33+
memory: 256Mi
2634
# Database Configuration
2735
mysql:
2836
enabled: false
@@ -98,7 +106,37 @@ pipeline:
98106

99107
# Argo Workflows Configuration - Minimal for dev
100108
argo:
101-
enabled: false
109+
enabled: true
110+
crds:
111+
install: true
112+
keep: true
113+
createAggregateRoles: false
114+
controller:
115+
replicas: 0
116+
serviceAccount:
117+
create: false
118+
rbac:
119+
create: false
120+
configMap:
121+
create: false
122+
clusterWorkflowTemplates:
123+
enabled: false
124+
server:
125+
enabled: false
126+
replicas: 0
127+
serviceAccount:
128+
create: false
129+
rbac:
130+
create: false
131+
clusterWorkflowTemplates:
132+
enabled: false
133+
executor:
134+
enabled: false
135+
workflow:
136+
serviceAccount:
137+
create: false
138+
rbac:
139+
create: false
102140

103141
# Application Configuration
104142
application:
@@ -277,15 +315,6 @@ cache:
277315
fieldRef:
278316
fieldPath: metadata.namespace
279317

280-
cacheDeployer:
281-
replicas: 1
282-
resources:
283-
requests:
284-
cpu: 50m
285-
memory: 64Mi
286-
limits:
287-
cpu: 100m
288-
memory: 256Mi
289318
visualization:
290319
replicas: 1
291320
resources:

experimental/helm/charts/pipelines/ci/values-gcp-enhanced.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ minio:
4545
objectStore:
4646
provider: gcs
4747
secure: false
48-
bucketName: "mlpipeline"
48+
bucketName: "yourGcsBucketName"
4949
gcs:
5050
projectId: "yourGcsProjectId"
5151
serviceAccount: ""

0 commit comments

Comments
 (0)