Skip to content

Commit

Permalink
Merge pull request #11112 from hakman/update-release-docs
Browse files Browse the repository at this point in the history
Update release process docs
  • Loading branch information
k8s-ci-robot committed Mar 22, 2021
2 parents bb10429 + f28e1e3 commit 3f8fdc2
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions docs/release-process.md
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,8 @@ Create container promotion PR:
```
cd ${GOPATH}/src/k8s.io/k8s.io
git checkout main
git pull
git checkout -b kops_images_${VERSION}
cd k8s.gcr.io/images/k8s-staging-kops
Expand All @@ -185,7 +187,7 @@ Currently we send the image and non-image artifact promotion PRs separately.
git add -p k8s.gcr.io/images/k8s-staging-kops/images.yaml
git commit -m "Promote kOps $VERSION images"
git push ${USER}
hub pull-request
hub pull-request -b main
```


Expand All @@ -194,7 +196,8 @@ Create binary promotion PR:
```
cd ${GOPATH}/src/k8s.io/k8s.io
git checkout master
git checkout main
git pull
git checkout -b kops_artifacts_${VERSION}
mkdir -p ./k8s-staging-kops/kops/releases/${VERSION}/
Expand All @@ -209,7 +212,7 @@ Verify, then send a PR:
git add artifacts/manifests/k8s-staging-kops/${VERSION}.yaml
git commit -m "Promote kOps $VERSION binary artifacts"
git push ${USER}
hub pull-request
hub pull-request -b main
```


Expand Down

0 comments on commit 3f8fdc2

Please sign in to comment.