Skip to content

Commit

Permalink
Update kubeflow/pipelines manifests from 2.0.0-alpha.7 (#2404)
Browse files Browse the repository at this point in the history
  • Loading branch information
surajkota authored Mar 10, 2023
1 parent f7dc14e commit 3939f25
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 13 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ This repo periodically syncs all official Kubeflow components from their respect
| Katib | apps/katib/upstream | [v0.15.0-rc.0](https://github.com/kubeflow/katib/tree/v0.15.0-rc.0/manifests/v1beta1) |
| KServe | contrib/kserve/kserve | [v0.10.0](https://github.com/kserve/kserve/tree/v0.10.0/install/v0.10.0) |
| KServe Models Web App | contrib/kserve/models-web-app | [v0.10.0](https://github.com/kserve/models-web-app/tree/v0.10.0/config) |
| Kubeflow Pipelines | apps/pipeline/upstream | [2.0.0-alpha.6](https://github.com/kubeflow/pipelines/tree/2.0.0-alpha.6/manifests/kustomize) |
| Kubeflow Pipelines | apps/pipeline/upstream | [2.0.0-alpha.7](https://github.com/kubeflow/pipelines/tree/2.0.0-alpha.7/manifests/kustomize) |
| Kubeflow Tekton Pipelines | apps/kfp-tekton/upstream | [v1.5.1](https://github.com/kubeflow/kfp-tekton/tree/v1.5.1/manifests/kustomize) |

The following is also a matrix with versions from common components that are
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ commonLabels:
app: cache-deployer
images:
- name: gcr.io/ml-pipeline/cache-deployer
newTag: 2.0.0-alpha.6
newTag: 2.0.0-alpha.7
2 changes: 1 addition & 1 deletion apps/pipeline/upstream/base/cache/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ commonLabels:
app: cache-server
images:
- name: gcr.io/ml-pipeline/cache-server
newTag: 2.0.0-alpha.6
newTag: 2.0.0-alpha.7
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ data:
until the changes take effect. A quick way to restart all deployments in a
namespace: `kubectl rollout restart deployment -n <your-namespace>`.
appName: pipeline
appVersion: 2.0.0-alpha.6
appVersion: 2.0.0-alpha.7
dbHost: mysql
dbPort: "3306"
mlmdDb: metadb
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ resources:
- metadata-grpc-sa.yaml
images:
- name: gcr.io/ml-pipeline/metadata-envoy
newTag: 2.0.0-alpha.6
newTag: 2.0.0-alpha.7
12 changes: 6 additions & 6 deletions apps/pipeline/upstream/base/pipeline/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,14 @@ resources:
- kfp-launcher-configmap.yaml
images:
- name: gcr.io/ml-pipeline/api-server
newTag: 2.0.0-alpha.6
newTag: 2.0.0-alpha.7
- name: gcr.io/ml-pipeline/persistenceagent
newTag: 2.0.0-alpha.6
newTag: 2.0.0-alpha.7
- name: gcr.io/ml-pipeline/scheduledworkflow
newTag: 2.0.0-alpha.6
newTag: 2.0.0-alpha.7
- name: gcr.io/ml-pipeline/frontend
newTag: 2.0.0-alpha.6
newTag: 2.0.0-alpha.7
- name: gcr.io/ml-pipeline/viewer-crd-controller
newTag: 2.0.0-alpha.6
newTag: 2.0.0-alpha.7
- name: gcr.io/ml-pipeline/visualization-server
newTag: 2.0.0-alpha.6
newTag: 2.0.0-alpha.7
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ resources:
- metadata-writer-sa.yaml
images:
- name: gcr.io/ml-pipeline/metadata-writer
newTag: 2.0.0-alpha.6
newTag: 2.0.0-alpha.7
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
images:
- name: gcr.io/ml-pipeline/inverse-proxy-agent
newTag: 2.0.0-alpha.6
newTag: 2.0.0-alpha.7
resources:
- proxy-configmap.yaml
- proxy-deployment.yaml
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,9 @@ spec:
# https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_default_authentication_plugin
# https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_authentication_policy
- --default-authentication-plugin=mysql_native_password
# Disable binlog as the logs grow fast and eat up all disk spaces eventually. And KFP doesn't currently utilize binlog.
# https://dev.mysql.com/doc/refman/8.0/en/replication-options-binary-log.html#option_mysqld_log-bin
- --disable-log-bin
env:
- name: MYSQL_ALLOW_EMPTY_PASSWORD
value: "true"
Expand Down

0 comments on commit 3939f25

Please sign in to comment.