Skip to content

Commit

Permalink
Update CHANGELOG for v2.0.0-beta1
Browse files Browse the repository at this point in the history
  • Loading branch information
jessesuen committed Jan 18, 2018
1 parent a373903 commit a202049
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 13 deletions.
23 changes: 19 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,24 @@
# Changelog

## 2.0.0-alpha4 (Unreleased)
+ Add a --dry-run option to the installer
+ Add ability for steps and resource templates to have outputs
- Prevent a potential k8s scheduler panic from incomplete setting of pod ownership reference
## 2.0.0-beta1 (2018-01-18)

+ Use and install minimal RBAC ClusterRoles for workflow-controller and argo-ui deployments
+ Introduce `retryStrategy` field to control set retries for failed/errored containers
+ Introduce `raw` input artifacts
+ Add `argo install --dry-run` to print Kubernetes YAML manifests without installing
+ Add `argo list` sorts by running pods, then by completion time
+ Add `argo list -o wide` to show pod counts and parameter information
+ Add `argo list --running --completed --status` workflow filtering
+ Add `argo list --since DURATION` to filter workflows based on a time duration
+ Add ability for steps and resource templates to have outputs parameters
+ OpenID Connect auth support (@mthx)
* Increase controller rate limits for much faster processing of highly parallized workflows
* Executor sidecar hardening (retrying of Kube API queries)
* Switch to k8s-codegen generated workflow client and informer
* {{workflow.uuid}} variable corrected to {{workflow.uid}}
* Documentation fixes (@reasonthearchitect, @mtx)
- Prevent a potential k8s scheduler panic from incomplete setting of pod ownership reference
- Fix issues in controller operating on stale workflow state, and incorrectly identifying deleted pods

## 2.0.0-alpha3 (2018-01-02)
+ Introduce the "resource" template type for performing CRUD operations on k8s resources
Expand All @@ -17,6 +31,7 @@
* Scalability improvements for highly parallelized workflows
* Improved validation of volume mounts with input artifacts
* Argo UI bug fixes and improvements
* Documentation fixes (@javierbq, @anshumanbh)
- Recover from unexpected panics when operating on workflows
- Fix a controller panic when using a script templates with input artifacts
- Fix issue preventing ability to pass JSON as a command line argument
Expand Down
6 changes: 3 additions & 3 deletions examples/input-artifact-git.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ spec:
git:
repo: https://github.com/argoproj/argo.git
revision: "master"
# For private repositories, first create a k8s secret containing
# the git credentials. Then and reference the keys in the secret
# selectors: usernameSecret and passwordSecret.
# For private repositories, create a k8s secret containing
# the git credentials and reference the secret keys in the
# secret selectors: usernameSecret and passwordSecret.
usernameSecret:
name: github-creds
key: username
Expand Down
6 changes: 3 additions & 3 deletions examples/retry-container-to-completion.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
apiVersion: argoproj.io/v1alpha1
kind: Workflow
metadata:
generateName: container-retries-
generateName: retry-to-completion-
spec:
entrypoint: container-retries
entrypoint: retry-to-completion
templates:
- name: container-retries
- name: retry-to-completion
retryStrategy: {}
container:
image: shrinand/random-fail
Expand Down
6 changes: 3 additions & 3 deletions examples/retry-container.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
apiVersion: argoproj.io/v1alpha1
kind: Workflow
metadata:
generateName: container-retries-
generateName: retry-container-
spec:
entrypoint: container-retries
entrypoint: retry-container
templates:
- name: container-retries
- name: retry-container
retryStrategy:
limit: 4
container:
Expand Down

0 comments on commit a202049

Please sign in to comment.