Skip to content

Commit 0cae1ca

Browse files
committed
Merge branch 'main' of github.com:UrielCohen456/argo-workflows-argocd-plugin into main
2 parents f76d421 + acd1556 commit 0cae1ca

File tree

3 files changed

+76
-0
lines changed

3 files changed

+76
-0
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
---
2+
name: Bug report
3+
about: Create a reproducible bug report.
4+
title: "[BUG] - "
5+
labels: bug
6+
assignees: UrielCohen456
7+
8+
---
9+
10+
## Checklist
11+
12+
<!-- Do NOT open an issue until you have: -->
13+
14+
* [ ] Double-checked my configuration.
15+
* [ ] Tested using the latest version.
16+
17+
## Summary
18+
19+
What happened/what you expected to happen?
20+
21+
What version are you running?
22+
23+
## Diagnostics
24+
25+
Paste the smallest workflow that reproduces the bug. We must be able to run the workflow.
26+
27+
```yaml
28+
29+
```
30+
31+
```bash
32+
# Logs from the workflow controller:
33+
kubectl logs -n argo deploy/workflow-controller | grep ${workflow}
34+
35+
# The workflow's pods that are problematic:
36+
kubectl get pod -o yaml -l workflows.argoproj.io/workflow=${workflow},workflow.argoproj.io/phase!=Succeeded
37+
38+
# Logs from in your workflow's side container (the plugin logs):
39+
kubectl logs -c sidecar -l workflows.argoproj.io/workflow=${workflow},workflow.argoproj.io/phase!=Succeeded
40+
```
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: "[FEAT] - "
5+
labels: enhancement
6+
assignees: UrielCohen456
7+
8+
---
9+
10+
# Summary
11+
12+
What change needs making?
13+
14+
# Use Cases
15+
16+
When would you use this?
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: "[FEAT] - "
5+
labels: enhancement
6+
assignees: UrielCohen456
7+
8+
---
9+
10+
**Is your feature request related to a problem? Please describe.**
11+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12+
13+
**Describe the solution you'd like**
14+
A clear and concise description of what you want to happen.
15+
16+
**Describe alternatives you've considered**
17+
A clear and concise description of any alternative solutions or features you've considered.
18+
19+
**Additional context**
20+
Add any other context or screenshots about the feature request here.

0 commit comments

Comments
 (0)