forked from openshift-service-mesh/sail-operator
-
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.
* upstream/main: (25 commits) Adding default value for IP_FAMILY (istio-ecosystem#378) Update/Fix Istioctl links and docs (istio-ecosystem#349) Fix broken url for sample gateway (istio-ecosystem#377) Implement e2e dualStack control plane tests (istio-ecosystem#373) Improve pull request template (istio-ecosystem#376) Add ability to specify resources in helm chart (istio-ecosystem#375) Update dependencies and fix transform (istio-ecosystem#374) E2E kubectl util refactor (istio-ecosystem#368) Update helm chart README (istio-ecosystem#370) Add pull request template (istio-ecosystem#366) Fix formatting in the charts readme page (istio-ecosystem#364) Add CODE-OF-CONDUCT to the project (istio-ecosystem#362) Update test labels in the wayofwork documentation (istio-ecosystem#359) Automatically adjust default release channel (istio-ecosystem#353) Adding wait after olm install in olm test setup (istio-ecosystem#357) Adding E2e multicluster test (istio-ecosystem#342) Use Kubernetes defaults for imagePullPolicy (istio-ecosystem#352) Add External Controlplane to user docs (istio-ecosystem#335) Show name of active revision in Istio/RemoteIstio status (istio-ecosystem#350) added helm overrides for proxy image as is available for operator (istio-ecosystem#339) ...
- Loading branch information
Showing
157 changed files
with
4,152 additions
and
1,025 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
<!-- Thanks for sending a pull request! Here are some tips for you: | ||
1. If this is your first time, please read our contributor guidelines: https://github.com/istio-ecosystem/sail-operator/blob/main/CONTRIBUTING.md | ||
2. Discuss your changes before you start working on them. You can open a new issue in the [Sail Operator GitHub repository](https://github.com/istio-ecosystem/sail-operator/issues) or start a discussion in the [Sail Operator Discussion](https://github.com/istio-ecosystem/sail-operator/discussions). By this way, you can get feedback from the community and ensure that your changes are aligned with the project goals. | ||
3. If the PR is unfinished, make is as a draft. | ||
--> | ||
|
||
#### What type of PR is this? | ||
<!-- | ||
In order to minimize the time taken to categorize your PR, add a label accoutring to the PR type defined above. | ||
Please, use the following labels, according to the PR type: | ||
* Enhancement / New Feature - enhancement | ||
* Bug Fix - bug | ||
* Refactor - cleanup/refactor | ||
* Optimization - enhancement | ||
* Test - test-e2e | ||
* Documentation Update - documentation | ||
--> | ||
|
||
- [ ] Enhancement / New Feature | ||
- [ ] Bug Fix | ||
- [ ] Refactor | ||
- [ ] Optimization | ||
- [ ] Test | ||
- [ ] Documentation Update | ||
|
||
#### What this PR does / why we need it: | ||
|
||
|
||
#### Which issue(s) this PR fixes: | ||
<!-- | ||
*Automatically closes linked issue when PR is merged. | ||
Usage: `Fixes #<issue number>`, or `Fixes (paste link of issue)`. | ||
Add related issue or PR if exists. | ||
--> | ||
Fixes # | ||
|
||
Related Issue/PR # | ||
|
||
#### Additional information: |
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,89 @@ | ||
name: Release workflow | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
release_version: | ||
description: "Release version" | ||
required: true | ||
bundle_channels: | ||
description: "Bundle channels" | ||
required: true | ||
default: dev-0.2 | ||
is_draft_release: | ||
description: "Draft release" | ||
type: boolean | ||
required: false | ||
default: true | ||
is_pre_release: | ||
description: "Pre-release" | ||
type: boolean | ||
required: false | ||
default: false | ||
|
||
run-name: Release ${{ inputs.release_version }} | ||
|
||
env: | ||
GIT_USER: ${{ secrets.GIT_USER }} | ||
GITHUB_TOKEN: ${{ secrets.GIT_TOKEN }} | ||
VERSION: ${{ inputs.release_version }} | ||
|
||
jobs: | ||
release: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Login to quay.io | ||
uses: docker/login-action@v3 | ||
with: | ||
registry: quay.io | ||
username: ${{ secrets.QUAY_USER }} | ||
password: ${{ secrets.QUAY_PWD }} | ||
|
||
- uses: actions/checkout@v4 | ||
|
||
- name: Build and push operator image | ||
run: | | ||
make docker-buildx \ | ||
-e TAG=$VERSION | ||
- name: Generate bundle metadata | ||
run: | | ||
make bundle \ | ||
-e CHANNELS=$CHANNELS | ||
env: | ||
CHANNELS: ${{ inputs.bundle_channels }} | ||
|
||
- name: Publish bundle in operatorhub.io | ||
run: | | ||
make bundle-publish \ | ||
-e GIT_CONFIG_USER_NAME="$GIT_CONFIG_USER_NAME" \ | ||
-e GIT_CONFIG_USER_EMAIL="$GIT_CONFIG_USER_EMAIL" \ | ||
-e OPERATOR_VERSION=$VERSION \ | ||
-e OPERATOR_HUB=community-operators \ | ||
-e OWNER=k8s-operatorhub \ | ||
-e FORK=maistra | ||
env: | ||
GIT_CONFIG_USER_NAME: "${{ github.actor }}" | ||
GIT_CONFIG_USER_EMAIL: "${{ github.actor_id }}+${{ github.actor }}@users.noreply.github.com" | ||
|
||
- name: Publish bundle in OpenShift OperatorHub | ||
run: | | ||
make bundle-publish \ | ||
-e GIT_CONFIG_USER_NAME="$GIT_CONFIG_USER_NAME" \ | ||
-e GIT_CONFIG_USER_EMAIL="$GIT_CONFIG_USER_EMAIL" \ | ||
-e OPERATOR_VERSION=$VERSION \ | ||
-e OWNER=redhat-openshift-ecosystem \ | ||
-e FORK=maistra | ||
env: | ||
GIT_CONFIG_USER_NAME: "${{ github.actor }}" | ||
GIT_CONFIG_USER_EMAIL: "${{ github.actor_id }}+${{ github.actor }}@users.noreply.github.com" | ||
|
||
- name: Create GitHub release | ||
run: | | ||
make create-gh-release \ | ||
-e GH_PRE_RELEASE=$GH_PRE_RELEASE \ | ||
-e GH_RELEASE_DRAFT=$GH_RELEASE_DRAFT | ||
env: | ||
GH_PRE_RELEASE: ${{ github.event.inputs.is_pre_release == 'true' }} | ||
GH_RELEASE_DRAFT: ${{ github.event.inputs.is_draft_release == 'true' }} |
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,7 @@ | ||
# Sail Operator Community Code of Conduct | ||
|
||
As contributors and maintainers of this project, and in the interest of fostering an open and welcoming community, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities. | ||
|
||
All members of the Sail Operator community must abide by the [CNCF Code of Conduct](https://github.com/cncf/foundation/blob/main/code-of-conduct.md). | ||
Only by respecting each other can we develop a productive, collaborative community. | ||
|
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
Oops, something went wrong.