Skip to content

Commit

Permalink
Sync kubeflow pipelines manifests 1.8.0 rc.2 (#2131)
Browse files Browse the repository at this point in the history
* hack: Update pipelines sync script to change README

Signed-off-by: Kimonas Sotirchos <[email protected]>

* Update kubeflow/pipelines manifests from 1.8.0-rc.2
  • Loading branch information
kimwnasptd authored Feb 11, 2022
1 parent 921b55d commit f2726c7
Show file tree
Hide file tree
Showing 10 changed files with 21 additions and 14 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ This repo periodically syncs all official Kubeflow components from their respect
| Katib | apps/katib/upstream | [v0.13.0-rc.0](https://github.com/kubeflow/katib/tree/v0.13.0-rc.0/manifests/v1beta1) |
| KFServing | apps/kfserving/upstream | [v0.6.1](https://github.com/kubeflow/kfserving/releases/tag/v0.6.1) |
| KServe | contrib/kserve/upstream | [v0.7.0](https://github.com/kserve/kserve/tree/v0.7.0) |
| Kubeflow Pipelines | apps/pipeline/upstream | [1.8.0-rc.1](https://github.com/kubeflow/pipelines/tree/1.8.0-rc.1/manifests/kustomize) |
| Kubeflow Pipelines | apps/pipeline/upstream | [1.8.0-rc.2](https://github.com/kubeflow/pipelines/tree/1.8.0-rc.2/manifests/kustomize) |
| Kubeflow Tekton Pipelines | apps/kfp-tekton/upstream | [v1.1.0](https://github.com/kubeflow/kfp-tekton/tree/v1.1.0/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: 1.8.0-rc.1
newTag: 1.8.0-rc.2
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: 1.8.0-rc.1
newTag: 1.8.0-rc.2
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: 1.8.0-rc.1
appVersion: 1.8.0-rc.2
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: 1.8.0-rc.1
newTag: 1.8.0-rc.2
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: 1.8.0-rc.1
newTag: 1.8.0-rc.2
- name: gcr.io/ml-pipeline/persistenceagent
newTag: 1.8.0-rc.1
newTag: 1.8.0-rc.2
- name: gcr.io/ml-pipeline/scheduledworkflow
newTag: 1.8.0-rc.1
newTag: 1.8.0-rc.2
- name: gcr.io/ml-pipeline/frontend
newTag: 1.8.0-rc.1
newTag: 1.8.0-rc.2
- name: gcr.io/ml-pipeline/viewer-crd-controller
newTag: 1.8.0-rc.1
newTag: 1.8.0-rc.2
- name: gcr.io/ml-pipeline/visualization-server
newTag: 1.8.0-rc.1
newTag: 1.8.0-rc.2
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: 1.8.0-rc.1
newTag: 1.8.0-rc.2
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ spec:
livenessProbe:
httpGet:
path: /liveness
port: '8090'
port: 8090
# Number of seconds after the container has started before the first probe is scheduled. Defaults to 0.
# Not necessary when the startup probe is in use.
initialDelaySeconds: 0
Expand Down
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: 1.8.0-rc.1
newTag: 1.8.0-rc.2
resources:
- proxy-configmap.yaml
- proxy-deployment.yaml
Expand Down
7 changes: 7 additions & 0 deletions hack/sync-pipelines-manifests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,15 @@ cp $SRC_DIR/manifests/kustomize $DST_DIR -r

echo "Successfully copied all manifests."

echo "Updating README..."
SRC_TXT="\[.*\](https://github.com/kubeflow/pipelines/tree/.*/manifests/kustomize)"
DST_TXT="\[$COMMIT\](https://github.com/kubeflow/pipelines/tree/$COMMIT/manifests/kustomize)"

sed -i "s|$SRC_TXT|$DST_TXT|g" ${MANIFESTS_DIR}/README.md

# DEV: Comment out these commands when local testing
echo "Committing the changes..."
cd $MANIFESTS_DIR
git add apps
git add README.md
git commit -m "Update kubeflow/pipelines manifests from ${COMMIT}"

0 comments on commit f2726c7

Please sign in to comment.