-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Alan Clucas <[email protected]>
- Loading branch information
Showing
48 changed files
with
647 additions
and
193 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -102,6 +102,7 @@ PVCs | |
Peixuan | ||
Ploomber | ||
Postgres | ||
PriorityClass | ||
RCs | ||
Roadmap | ||
RoleBinding | ||
|
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
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,75 @@ | ||
# Deprecations | ||
|
||
Sometimes a feature of Argo Workflows is deprecated. | ||
You should stop using a deprecated feature as it may be removed in a future minor or major release of Argo Workflows. | ||
|
||
To determine if you are using a deprecated feature the [`deprecated_feature`](metrics.md#deprecated_feature) metric can help. | ||
This metric will go up for each use of a deprecated feature by the workflow controller. | ||
This means it may go up once or many times for a single event. | ||
If the number is going up the feature is still in use by your system. | ||
If the metric is not present or no longer increasing are no longer using the monitored deprecated features. | ||
|
||
## `cronworkflow schedule` | ||
|
||
The spec field `schedule` which takes a single value is replaced by `schedules` which takes a list. | ||
To update this replace the `schedule` with `schedules` as in the following example | ||
|
||
```yaml | ||
spec: | ||
schedule: "30 1 * * *" | ||
``` | ||
is replaced with | ||
```yaml | ||
spec: | ||
schedules: | ||
- "30 1 * * *" | ||
``` | ||
## `synchronization mutex` | ||
|
||
The synchronization field `mutex` which takes a single value is replaced by `mutexes` which takes a list. | ||
To update this replace `mutex` with `mutexes` as in the following example | ||
|
||
```yaml | ||
synchronization: | ||
mutex: | ||
name: foobar | ||
``` | ||
|
||
is replaced with | ||
|
||
```yaml | ||
synchronization: | ||
mutexes: | ||
- name: foobar | ||
``` | ||
|
||
## `synchronization semaphore` | ||
|
||
The synchronization field `semaphore` which takes a single value is replaced by `semaphores` which takes a list. | ||
To update this replace `semaphore` with `semaphores` as in the following example | ||
|
||
```yaml | ||
synchronization: | ||
semaphore: | ||
configMapKeyRef: | ||
name: my-config | ||
key: workflow | ||
``` | ||
|
||
is replaced with | ||
|
||
```yaml | ||
synchronization: | ||
semaphores: | ||
- configMapKeyRef: | ||
name: my-config | ||
key: workflow | ||
``` | ||
|
||
## `workflow podpriority` | ||
|
||
The Workflow spec field `podPriority` which takes a numeric value is deprecated and `podPriorityClassName` should be used instead. | ||
To update this you will need a [PriorityClass](https://kubernetes.io/docs/concepts/scheduling-eviction/pod-priority-preemption/#priorityclass) in your cluster and refer to that using `podPriorityClassName`. |
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
Oops, something went wrong.