forked from argoproj/argo-workflows
-
Notifications
You must be signed in to change notification settings - Fork 2
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 #69 from codefresh-io/CR-7602-sync-v3.2.3
Cr 7602 sync v3.2.3
- Loading branch information
Showing
882 changed files
with
51,419 additions
and
8,115 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
--- | ||
name: Regression report | ||
about: Create a regression report. Not for support requests. | ||
labels: ['bug', 'regression', 'triage'] | ||
--- | ||
## Summary | ||
|
||
What happened/what you expected to happen? | ||
|
||
What version is it broken in? | ||
|
||
What version was it working in? | ||
|
||
## Diagnostics | ||
|
||
Either a workflow that reproduces the bug, or paste you whole workflow YAML, including status, something like: | ||
|
||
```yaml | ||
kubectl get wf -o yaml ${workflow} | ||
``` | ||
|
||
What Kubernetes provider are you using? | ||
|
||
What executor are you running? Docker/K8SAPI/Kubelet/PNS/Emissary | ||
|
||
```bash | ||
# Logs from the workflow controller: | ||
kubectl logs -n argo deploy/workflow-controller | grep ${workflow} | ||
|
||
# The workflow's pods that are problematic: | ||
kubectl get pod -o yaml -l workflows.argoproj.io/workflow=${workflow},workflow.argoproj.io/phase!=Succeeded | ||
|
||
# Logs from in your workflow's wait container, something like: | ||
kubectl logs -c wait -l workflows.argoproj.io/workflow=${workflow},workflow.argoproj.io/phase!=Succeeded | ||
``` | ||
|
||
--- | ||
<!-- Issue Author: Don't delete this message to encourage other users to support your issue! --> | ||
**Message from the maintainers**: | ||
|
||
Impacted by this bug? Give it a 👍. We prioritise the issues with the most 👍. |
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 |
---|---|---|
@@ -1,10 +1,9 @@ | ||
Checklist: | ||
|
||
* [ ] My organization is added to [USERS.md](https://github.com/argoproj/argo-workflows/blob/master/USERS.md). | ||
|
||
Tips: | ||
|
||
* Maybe add you organization to [USERS.md](https://github.com/argoproj/argo-workflows/blob/master/USERS.md). | ||
* Your PR needs to pass the required checks before it can be approved. If the check is not required (e.g. E2E tests) it does not need to pass | ||
* Sign-off your commits to pass the DCO check: `git commit --signoff`. | ||
* Run `make pre-commit -B` to fix codegen or lint problems. | ||
* Say how how you tested your changes. If you changed the UI, attach screenshots. | ||
* If changes were requested, and you've made them, then dismis the review to get it looked at again. | ||
* You can ask for help! |
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
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,29 @@ | ||
name: SDKs | ||
on: | ||
push: | ||
tags: | ||
- v* | ||
- 'v3.2.*' | ||
- 'v3.1.*' | ||
branches: | ||
- dev-* | ||
jobs: | ||
sdk: | ||
if: github.repository == 'argoproj/argo-workflows' | ||
runs-on: ubuntu-latest | ||
name: Publish SDK | ||
strategy: | ||
matrix: | ||
name: | ||
- java | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- run: make --directory sdks/${{matrix.name}} publish -B | ||
env: | ||
JAVA_SDK_MAVEN_PASSWORD: ${{ secrets.GITHUB_TOKEN }} | ||
- uses: peter-evans/create-pull-request@v3 | ||
with: | ||
title: 'chore: updated ${{matrix.name}} SDK' | ||
commit-message: 'chore: updated ${{matrix.name}} SDK' | ||
branch: create-pull-request/sdk/${{matrix.name}} | ||
signoff: true |
Oops, something went wrong.