Skip to content

Commit

Permalink
Update manifests to v2.11.7
Browse files Browse the repository at this point in the history
  • Loading branch information
alexec committed Nov 2, 2020
1 parent 0f18ab1 commit bf3fec1
Show file tree
Hide file tree
Showing 18 changed files with 40 additions and 20 deletions.
2 changes: 1 addition & 1 deletion api/openapi-spec/swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"info": {
"description": "You can get examples of requests and responses by using the CLI with `--gloglevel=9`, e.g. `argo list --gloglevel=9`",
"title": "Argo Server API",
"version": "v2.11.6"
"version": "v2.11.7"
},
"paths": {
"/api/v1/archived-workflows": {
Expand Down
2 changes: 2 additions & 0 deletions docs/cli/argo.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@ If you're using the Argo Server (e.g. because you need large workflow support or
* [argo cluster-template](argo_cluster-template.md) - manipulate cluster workflow templates
* [argo completion](argo_completion.md) - output shell completion code for the specified shell (bash or zsh)
* [argo cron](argo_cron.md) - manage cron workflows

NextScheduledRun assumes that the workflow-controller uses UTC as its timezone
* [argo delete](argo_delete.md) - delete workflows
* [argo get](argo_get.md) - display details about a workflow
* [argo lint](argo_lint.md) - validate files or directories of workflow manifests
Expand Down
4 changes: 4 additions & 0 deletions docs/cli/argo_cron.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,14 @@

manage cron workflows

NextScheduledRun assumes that the workflow-controller uses UTC as its timezone

### Synopsis

manage cron workflows

NextScheduledRun assumes that the workflow-controller uses UTC as its timezone

```
argo cron [flags]
```
Expand Down
2 changes: 2 additions & 0 deletions docs/cli/argo_cron_create.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,3 +58,5 @@ argo cron create FILE1 FILE2... [flags]

* [argo cron](argo_cron.md) - manage cron workflows

NextScheduledRun assumes that the workflow-controller uses UTC as its timezone

2 changes: 2 additions & 0 deletions docs/cli/argo_cron_delete.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,5 @@ argo cron delete [CRON_WORKFLOW... | --all] [flags]

* [argo cron](argo_cron.md) - manage cron workflows

NextScheduledRun assumes that the workflow-controller uses UTC as its timezone

2 changes: 2 additions & 0 deletions docs/cli/argo_cron_get.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,5 @@ argo cron get CRON_WORKFLOW... [flags]

* [argo cron](argo_cron.md) - manage cron workflows

NextScheduledRun assumes that the workflow-controller uses UTC as its timezone

2 changes: 2 additions & 0 deletions docs/cli/argo_cron_lint.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,5 @@ argo cron lint FILE... [flags]

* [argo cron](argo_cron.md) - manage cron workflows

NextScheduledRun assumes that the workflow-controller uses UTC as its timezone

2 changes: 2 additions & 0 deletions docs/cli/argo_cron_list.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,3 +50,5 @@ argo cron list [flags]

* [argo cron](argo_cron.md) - manage cron workflows

NextScheduledRun assumes that the workflow-controller uses UTC as its timezone

2 changes: 2 additions & 0 deletions docs/cli/argo_cron_resume.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,3 +48,5 @@ argo cron resume [CRON_WORKFLOW...] [flags]

* [argo cron](argo_cron.md) - manage cron workflows

NextScheduledRun assumes that the workflow-controller uses UTC as its timezone

2 changes: 2 additions & 0 deletions docs/cli/argo_cron_suspend.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,3 +48,5 @@ argo cron suspend CRON_WORKFLOW... [flags]

* [argo cron](argo_cron.md) - manage cron workflows

NextScheduledRun assumes that the workflow-controller uses UTC as its timezone

2 changes: 1 addition & 1 deletion docs/swagger.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Argo Server API
You can get examples of requests and responses by using the CLI with `--gloglevel=9`, e.g. `argo list --gloglevel=9`

## Version: v2.11.6
## Version: v2.11.7

### Security
**BearerToken**
Expand Down
2 changes: 1 addition & 1 deletion manifests/base/argo-server/argo-server-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ spec:
serviceAccountName: argo-server
containers:
- name: argo-server
image: argoproj/argocli:v2.11.6
image: argoproj/argocli:v2.11.7
args: [server]
ports:
- name: web
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ spec:
serviceAccountName: argo
containers:
- name: workflow-controller
image: argoproj/workflow-controller:v2.11.6
image: argoproj/workflow-controller:v2.11.7
command:
- workflow-controller
args:
- --configmap
- workflow-controller-configmap
- --executor-image
- argoproj/argoexec:v2.11.6
- argoproj/argoexec:v2.11.7
nodeSelector:
kubernetes.io/os: linux
6 changes: 3 additions & 3 deletions manifests/install.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,7 @@ spec:
containers:
- args:
- server
image: argoproj/argocli:v2.11.6
image: argoproj/argocli:v2.11.7
name: argo-server
ports:
- containerPort: 2746
Expand Down Expand Up @@ -491,10 +491,10 @@ spec:
- --configmap
- workflow-controller-configmap
- --executor-image
- argoproj/argoexec:v2.11.6
- argoproj/argoexec:v2.11.7
command:
- workflow-controller
image: argoproj/workflow-controller:v2.11.6
image: argoproj/workflow-controller:v2.11.7
name: workflow-controller
nodeSelector:
kubernetes.io/os: linux
Expand Down
6 changes: 3 additions & 3 deletions manifests/namespace-install.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ spec:
- args:
- server
- --namespaced
image: argoproj/argocli:v2.11.6
image: argoproj/argocli:v2.11.7
name: argo-server
ports:
- containerPort: 2746
Expand Down Expand Up @@ -391,11 +391,11 @@ spec:
- --configmap
- workflow-controller-configmap
- --executor-image
- argoproj/argoexec:v2.11.6
- argoproj/argoexec:v2.11.7
- --namespaced
command:
- workflow-controller
image: argoproj/workflow-controller:v2.11.6
image: argoproj/workflow-controller:v2.11.7
name: workflow-controller
nodeSelector:
kubernetes.io/os: linux
Expand Down
6 changes: 3 additions & 3 deletions manifests/quick-start-minimal.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -582,7 +582,7 @@ spec:
- server
- --auth-mode
- client
image: argoproj/argocli:v2.11.6
image: argoproj/argocli:v2.11.7
name: argo-server
ports:
- containerPort: 2746
Expand Down Expand Up @@ -622,11 +622,11 @@ spec:
- --configmap
- workflow-controller-configmap
- --executor-image
- argoproj/argoexec:v2.11.6
- argoproj/argoexec:v2.11.7
- --namespaced
command:
- workflow-controller
image: argoproj/workflow-controller:v2.11.6
image: argoproj/workflow-controller:v2.11.7
name: workflow-controller
nodeSelector:
kubernetes.io/os: linux
Expand Down
6 changes: 3 additions & 3 deletions manifests/quick-start-mysql.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -626,7 +626,7 @@ spec:
- server
- --auth-mode
- client
image: argoproj/argocli:v2.11.6
image: argoproj/argocli:v2.11.7
name: argo-server
ports:
- containerPort: 2746
Expand Down Expand Up @@ -711,11 +711,11 @@ spec:
- --configmap
- workflow-controller-configmap
- --executor-image
- argoproj/argoexec:v2.11.6
- argoproj/argoexec:v2.11.7
- --namespaced
command:
- workflow-controller
image: argoproj/workflow-controller:v2.11.6
image: argoproj/workflow-controller:v2.11.7
name: workflow-controller
nodeSelector:
kubernetes.io/os: linux
Expand Down
6 changes: 3 additions & 3 deletions manifests/quick-start-postgres.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -626,7 +626,7 @@ spec:
- server
- --auth-mode
- client
image: argoproj/argocli:v2.11.6
image: argoproj/argocli:v2.11.7
name: argo-server
ports:
- containerPort: 2746
Expand Down Expand Up @@ -703,11 +703,11 @@ spec:
- --configmap
- workflow-controller-configmap
- --executor-image
- argoproj/argoexec:v2.11.6
- argoproj/argoexec:v2.11.7
- --namespaced
command:
- workflow-controller
image: argoproj/workflow-controller:v2.11.6
image: argoproj/workflow-controller:v2.11.7
name: workflow-controller
nodeSelector:
kubernetes.io/os: linux
Expand Down

0 comments on commit bf3fec1

Please sign in to comment.