forked from csi-addons/kubernetes-csi-addons
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #15 from openshift-cherrypick-robot/cherry-pick-14…
…-to-release-4.10 [release-4.10] sync upstream main branch to downstream
- Loading branch information
Showing
8 changed files
with
88 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -112,6 +112,21 @@ NAME DESIRED CURRENT R | |
replicaset.apps/csi-addons-controller-manager-687d47b8c7 1 1 1 49s | ||
``` | ||
|
||
## Contributing | ||
|
||
The [Contribution Guidelines](CONTRIBUTING.md) contain details on the process | ||
to contribute to this project. | ||
|
||
For feature enhancements, or questions about particular features or design | ||
choices, there is a mailinglist. All regular contributors are encouraged to | ||
subscribe to the list, and participate in the discussions. | ||
|
||
Subscribing can be done through the [mailman web interface][mailman] or by | ||
[sending an email to [email protected]][subscribe] with subject | ||
`subscribe`. | ||
|
||
[csi_addons]: https://github.com/csi-addons/spec/ | ||
[csi]: https://kubernetes-csi.github.io/docs/ | ||
[operatorhub]: https://operatorhub.io/ | ||
[mailman]: https://listman.redhat.com/mailman/listinfo/csi-addons | ||
[subscribe]: mailto:[email protected]?subject=subscribe |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Continuous Integration | ||
|
||
## GitHub Workflows | ||
|
||
The GitHub Workflows under [`.github/workflows/][workflows] contain jobs that | ||
are started when Pull-Requests are created or updated. Some of the jobs can | ||
build container-images for multiple architectures. Not everyone or all | ||
environmens wants to run the build tests for all platforms. The workflows can | ||
be configured to select platforms that the `docker/setup-buildx-action` | ||
supports. | ||
|
||
For this configuration, a new Secret should be created in the GitHub | ||
Settings of the repository. 'Normal' environment variables seem not possible. | ||
|
||
An example of the GitHub Secret that will build the container-images on AMD64, | ||
and both 32-bit and 64-bit Arm platforms: | ||
|
||
- `BUILD_PLATFORMS`: `linux/amd64,linux/arm64,linux/arm/v7` | ||
|
||
Detailed steps on creating the GitHub Secret can be found in [the GitHub | ||
Documentation][gh_doc_secret]. | ||
|
||
In case the `BUILD_PLATFORMS` environment variable is not set, the | ||
`docker/setup-buildx-action` action defaults to the single architecture where | ||
the workflow is run (usually `linux/amd64`). | ||
|
||
[workflows]: .github/workflows/ | ||
[gh_doc_secret]: https://docs.github.com/en/actions/security-guides/encrypted-secrets#creating-encrypted-secrets-for-a-repository |