File tree 1 file changed +23
-0
lines changed
1 file changed +23
-0
lines changed Original file line number Diff line number Diff line change
1
+ # Fork Information
2
+
3
+ ## Releasing Steps
4
+
5
+ 1 . Take a copy of the upstream ` knative-vX.Y.Z ` tag and create a new __ branch__ on this repo called ` fork-X.Y.Z `
6
+ 2 . Make any change on the ` fork-X.Y.Z ` branch, prepending the commit message with ` FORK: `
7
+ 3 . Use the GitHub interface to create a tag and release called ` vX.Y.Z-deploykf.N ` , where ` N ` is an incremental number starting from ` 0 `
8
+ 4 . On a local clone of that tag, run the following commands to build and push the images:
9
+
10
+ ``` bash
11
+ #
12
+ # WARNING: running this command will immediately push the images to the registry.
13
+ # update the `--tags` flag, and ensure you have checked out the correct commit
14
+ #
15
+ export KO_DOCKER_REPO=" ghcr.io/deploykf/knative-serving"
16
+ ko resolve \
17
+ --platform " linux/arm64,linux/amd64" \
18
+ --sbom " none" \
19
+ --tags " X.Y.Z-deploykf.N" \
20
+ --base-import-paths \
21
+ -Rf config/core/ \
22
+ > /dev/null
23
+ ```
You can’t perform that action at this time.
0 commit comments