mirror of
https://github.com/argoproj/argo-cd.git
synced 2026-02-24 19:48:46 +01:00
Compare commits
6 Commits
appsetdocs
...
v1.0.0-rc1
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c140976eeb | ||
|
|
05c22d4ddc | ||
|
|
3e08938a20 | ||
|
|
5937bb574d | ||
|
|
ded55b26d1 | ||
|
|
d79ed65de0 |
22
CHANGELOG.md
22
CHANGELOG.md
@@ -22,17 +22,11 @@ Argo CD introduces Custom Resource Actions to allow users to provide their own L
|
||||
|
||||
* Remove deprecated componentParameterOverrides field #1372
|
||||
|
||||
### Changes since v0.12.1
|
||||
|
||||
#### New Features
|
||||
|
||||
+ Issue #357 - Expose application nodes networking information (#1333)
|
||||
+ Support for customizable resource actions as Lua scripts #86
|
||||
+ Surface Service/Ingress external IPs, hostname to application #908
|
||||
+ Update argocd-util import/export to support proper backup and restore (#1328)
|
||||
### Changes since v0.12.2
|
||||
|
||||
#### Enhancements
|
||||
|
||||
* `argocd app wait` should have `--resource` flag like sync #1206
|
||||
* Adds support for `kustomize edit set image`. Closes #1275 (#1324)
|
||||
* Allow wait to return on health or suspended (#1392)
|
||||
* Application warning when a manifest is defined twice #1070
|
||||
@@ -41,30 +35,32 @@ Argo CD introduces Custom Resource Actions to allow users to provide their own L
|
||||
* Display number of errors on resource tab #1477
|
||||
* Displays resources that are being deleted as "Progressing". Closes #1410 (#1426)
|
||||
* Generate random name for grpc proxy unix socket file instead of time stamp (#1455)
|
||||
* Issue #357 - Expose application nodes networking information (#1333)
|
||||
* Issue #1404 - App controller unnecessary set namespace to cluster level resources (#1405)
|
||||
* Nils health if the resource does not provide it. Closes #1383 (#1408)
|
||||
* Perform health assessments on all resource nodes in the tree. Closes #1382 (#1422)
|
||||
* Remove deprecated componentParameterOverrides field #1372
|
||||
* Shows the health of the application. Closes #1433 (#1434)
|
||||
* Surface Service/Ingress external IPs, hostname to application #908
|
||||
* Surface pod status to tree view #1358
|
||||
* Support for customizable resource actions as Lua scripts #86
|
||||
* UI / API Errors Truncated, Time Out #1386
|
||||
* UI Enhancement Proposals Quick Wins #1274
|
||||
* Update argocd-util import/export to support proper backup and restore (#1328)
|
||||
* Whitelisting repos/clusters in projects should consider repo/cluster permissions #1432
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- "bind: address already in use" after switching to gRPC-Web #1451
|
||||
- Annoying warning while using `--grpc-web` flag #1420
|
||||
- Don't compare secrets in the CLI, since argo-cd doesn't have access to their data (#1459)
|
||||
- Dropdown menu should not have sync item for unmanaged resources #1357
|
||||
- Fixes goroutine leak. Closes #1381 (#1457)
|
||||
- Improve input style #1217
|
||||
- Issue #1389 - Fix null pointer exception in secret normalization function (#1428)
|
||||
- Issue #1425 - Argo CD should not delete CRDs (#1428)
|
||||
- Issue #1446 - Delete helm temp directories (#1449)
|
||||
- Issue #908 - Surface Service/Ingress external IPs, hostname to application (#1347)
|
||||
- kustomization fields are all mandatory #1504
|
||||
- Resource node details is crashing if live resource is missing $1505
|
||||
- Rollback UI is not showing correct ksonnet parameters in preview #1326
|
||||
- See details of applications fails with "r.nodes is undefined" #1371
|
||||
- UI fails to load custom actions is resource is not deployed #1502
|
||||
- Unable to create app from private repo: x509: certificate signed by unknown authority #1171
|
||||
|
||||
## v0.12.2 (2019-04-22)
|
||||
|
||||
2
Makefile
2
Makefile
@@ -178,4 +178,4 @@ release-precheck: manifests
|
||||
@if [ "$(GIT_TAG)" != "v`cat VERSION`" ]; then echo 'VERSION does not match git tag'; exit 1; fi
|
||||
|
||||
.PHONY: release
|
||||
release: release-precheck precheckin image release-cli
|
||||
release: release-precheck pre-commit image release-cli
|
||||
|
||||
@@ -12,7 +12,7 @@ bases:
|
||||
images:
|
||||
- name: argoproj/argocd
|
||||
newName: argoproj/argocd
|
||||
newTag: latest
|
||||
newTag: v1.0.0-rc1
|
||||
- name: argoproj/argocd-ui
|
||||
newName: argoproj/argocd-ui
|
||||
newTag: latest
|
||||
newTag: v1.0.0-rc1
|
||||
|
||||
@@ -17,7 +17,7 @@ patchesStrategicMerge:
|
||||
images:
|
||||
- name: argoproj/argocd
|
||||
newName: argoproj/argocd
|
||||
newTag: latest
|
||||
newTag: v1.0.0-rc1
|
||||
- name: argoproj/argocd-ui
|
||||
newName: argoproj/argocd-ui
|
||||
newTag: latest
|
||||
newTag: v1.0.0-rc1
|
||||
|
||||
@@ -185,10 +185,6 @@ spec:
|
||||
description: NamePrefix is a prefix appended to resources
|
||||
for kustomize apps
|
||||
type: string
|
||||
required:
|
||||
- namePrefix
|
||||
- imageTags
|
||||
- images
|
||||
type: object
|
||||
path:
|
||||
description: Path is a directory path within the repository
|
||||
@@ -419,10 +415,6 @@ spec:
|
||||
description: NamePrefix is a prefix appended to resources for
|
||||
kustomize apps
|
||||
type: string
|
||||
required:
|
||||
- namePrefix
|
||||
- imageTags
|
||||
- images
|
||||
type: object
|
||||
path:
|
||||
description: Path is a directory path within the repository containing
|
||||
@@ -488,6 +480,12 @@ spec:
|
||||
- message
|
||||
type: object
|
||||
type: array
|
||||
externalURLs:
|
||||
description: ExternalURLs holds all external URLs of application child
|
||||
resources.
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
health:
|
||||
properties:
|
||||
message:
|
||||
@@ -633,10 +631,6 @@ spec:
|
||||
description: NamePrefix is a prefix appended to resources
|
||||
for kustomize apps
|
||||
type: string
|
||||
required:
|
||||
- namePrefix
|
||||
- imageTags
|
||||
- images
|
||||
type: object
|
||||
path:
|
||||
description: Path is a directory path within the repository
|
||||
@@ -670,9 +664,6 @@ spec:
|
||||
- source
|
||||
type: object
|
||||
type: array
|
||||
ingress:
|
||||
items: {}
|
||||
type: array
|
||||
observedAt: {}
|
||||
operationState:
|
||||
description: OperationState contains information about state of currently
|
||||
@@ -853,10 +844,6 @@ spec:
|
||||
description: NamePrefix is a prefix appended to
|
||||
resources for kustomize apps
|
||||
type: string
|
||||
required:
|
||||
- namePrefix
|
||||
- imageTags
|
||||
- images
|
||||
type: object
|
||||
path:
|
||||
description: Path is a directory path within the repository
|
||||
@@ -1092,10 +1079,6 @@ spec:
|
||||
description: NamePrefix is a prefix appended to resources
|
||||
for kustomize apps
|
||||
type: string
|
||||
required:
|
||||
- namePrefix
|
||||
- imageTags
|
||||
- images
|
||||
type: object
|
||||
path:
|
||||
description: Path is a directory path within the repository
|
||||
@@ -1312,10 +1295,6 @@ spec:
|
||||
description: NamePrefix is a prefix appended to resources
|
||||
for kustomize apps
|
||||
type: string
|
||||
required:
|
||||
- namePrefix
|
||||
- imageTags
|
||||
- images
|
||||
type: object
|
||||
path:
|
||||
description: Path is a directory path within the repository
|
||||
@@ -2138,7 +2117,7 @@ spec:
|
||||
- argocd-redis-ha-announce-2:26379
|
||||
- --sentinelmaster
|
||||
- argocd
|
||||
image: argoproj/argocd:latest
|
||||
image: argoproj/argocd:v1.0.0-rc1
|
||||
imagePullPolicy: Always
|
||||
name: argocd-application-controller
|
||||
ports:
|
||||
@@ -2185,7 +2164,7 @@ spec:
|
||||
- cp
|
||||
- /usr/local/bin/argocd-util
|
||||
- /shared
|
||||
image: argoproj/argocd:latest
|
||||
image: argoproj/argocd:v1.0.0-rc1
|
||||
imagePullPolicy: Always
|
||||
name: copyutil
|
||||
volumeMounts:
|
||||
@@ -2240,7 +2219,7 @@ spec:
|
||||
- argocd-redis-ha-announce-2:26379
|
||||
- --sentinelmaster
|
||||
- argocd
|
||||
image: argoproj/argocd:latest
|
||||
image: argoproj/argocd:v1.0.0-rc1
|
||||
imagePullPolicy: Always
|
||||
name: argocd-repo-server
|
||||
ports:
|
||||
@@ -2297,7 +2276,7 @@ spec:
|
||||
- argocd-redis-ha-announce-2:26379
|
||||
- --sentinelmaster
|
||||
- argocd
|
||||
image: argoproj/argocd:latest
|
||||
image: argoproj/argocd:v1.0.0-rc1
|
||||
imagePullPolicy: Always
|
||||
name: argocd-server
|
||||
ports:
|
||||
@@ -2318,7 +2297,7 @@ spec:
|
||||
- -r
|
||||
- /app
|
||||
- /shared
|
||||
image: argoproj/argocd-ui:latest
|
||||
image: argoproj/argocd-ui:v1.0.0-rc1
|
||||
imagePullPolicy: Always
|
||||
name: ui
|
||||
volumeMounts:
|
||||
|
||||
@@ -185,10 +185,6 @@ spec:
|
||||
description: NamePrefix is a prefix appended to resources
|
||||
for kustomize apps
|
||||
type: string
|
||||
required:
|
||||
- namePrefix
|
||||
- imageTags
|
||||
- images
|
||||
type: object
|
||||
path:
|
||||
description: Path is a directory path within the repository
|
||||
@@ -419,10 +415,6 @@ spec:
|
||||
description: NamePrefix is a prefix appended to resources for
|
||||
kustomize apps
|
||||
type: string
|
||||
required:
|
||||
- namePrefix
|
||||
- imageTags
|
||||
- images
|
||||
type: object
|
||||
path:
|
||||
description: Path is a directory path within the repository containing
|
||||
@@ -488,6 +480,12 @@ spec:
|
||||
- message
|
||||
type: object
|
||||
type: array
|
||||
externalURLs:
|
||||
description: ExternalURLs holds all external URLs of application child
|
||||
resources.
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
health:
|
||||
properties:
|
||||
message:
|
||||
@@ -633,10 +631,6 @@ spec:
|
||||
description: NamePrefix is a prefix appended to resources
|
||||
for kustomize apps
|
||||
type: string
|
||||
required:
|
||||
- namePrefix
|
||||
- imageTags
|
||||
- images
|
||||
type: object
|
||||
path:
|
||||
description: Path is a directory path within the repository
|
||||
@@ -670,9 +664,6 @@ spec:
|
||||
- source
|
||||
type: object
|
||||
type: array
|
||||
ingress:
|
||||
items: {}
|
||||
type: array
|
||||
observedAt: {}
|
||||
operationState:
|
||||
description: OperationState contains information about state of currently
|
||||
@@ -853,10 +844,6 @@ spec:
|
||||
description: NamePrefix is a prefix appended to
|
||||
resources for kustomize apps
|
||||
type: string
|
||||
required:
|
||||
- namePrefix
|
||||
- imageTags
|
||||
- images
|
||||
type: object
|
||||
path:
|
||||
description: Path is a directory path within the repository
|
||||
@@ -1092,10 +1079,6 @@ spec:
|
||||
description: NamePrefix is a prefix appended to resources
|
||||
for kustomize apps
|
||||
type: string
|
||||
required:
|
||||
- namePrefix
|
||||
- imageTags
|
||||
- images
|
||||
type: object
|
||||
path:
|
||||
description: Path is a directory path within the repository
|
||||
@@ -1312,10 +1295,6 @@ spec:
|
||||
description: NamePrefix is a prefix appended to resources
|
||||
for kustomize apps
|
||||
type: string
|
||||
required:
|
||||
- namePrefix
|
||||
- imageTags
|
||||
- images
|
||||
type: object
|
||||
path:
|
||||
description: Path is a directory path within the repository
|
||||
@@ -2053,7 +2032,7 @@ spec:
|
||||
- argocd-redis-ha-announce-2:26379
|
||||
- --sentinelmaster
|
||||
- argocd
|
||||
image: argoproj/argocd:latest
|
||||
image: argoproj/argocd:v1.0.0-rc1
|
||||
imagePullPolicy: Always
|
||||
name: argocd-application-controller
|
||||
ports:
|
||||
@@ -2100,7 +2079,7 @@ spec:
|
||||
- cp
|
||||
- /usr/local/bin/argocd-util
|
||||
- /shared
|
||||
image: argoproj/argocd:latest
|
||||
image: argoproj/argocd:v1.0.0-rc1
|
||||
imagePullPolicy: Always
|
||||
name: copyutil
|
||||
volumeMounts:
|
||||
@@ -2155,7 +2134,7 @@ spec:
|
||||
- argocd-redis-ha-announce-2:26379
|
||||
- --sentinelmaster
|
||||
- argocd
|
||||
image: argoproj/argocd:latest
|
||||
image: argoproj/argocd:v1.0.0-rc1
|
||||
imagePullPolicy: Always
|
||||
name: argocd-repo-server
|
||||
ports:
|
||||
@@ -2212,7 +2191,7 @@ spec:
|
||||
- argocd-redis-ha-announce-2:26379
|
||||
- --sentinelmaster
|
||||
- argocd
|
||||
image: argoproj/argocd:latest
|
||||
image: argoproj/argocd:v1.0.0-rc1
|
||||
imagePullPolicy: Always
|
||||
name: argocd-server
|
||||
ports:
|
||||
@@ -2233,7 +2212,7 @@ spec:
|
||||
- -r
|
||||
- /app
|
||||
- /shared
|
||||
image: argoproj/argocd-ui:latest
|
||||
image: argoproj/argocd-ui:v1.0.0-rc1
|
||||
imagePullPolicy: Always
|
||||
name: ui
|
||||
volumeMounts:
|
||||
|
||||
@@ -185,10 +185,6 @@ spec:
|
||||
description: NamePrefix is a prefix appended to resources
|
||||
for kustomize apps
|
||||
type: string
|
||||
required:
|
||||
- namePrefix
|
||||
- imageTags
|
||||
- images
|
||||
type: object
|
||||
path:
|
||||
description: Path is a directory path within the repository
|
||||
@@ -419,10 +415,6 @@ spec:
|
||||
description: NamePrefix is a prefix appended to resources for
|
||||
kustomize apps
|
||||
type: string
|
||||
required:
|
||||
- namePrefix
|
||||
- imageTags
|
||||
- images
|
||||
type: object
|
||||
path:
|
||||
description: Path is a directory path within the repository containing
|
||||
@@ -488,6 +480,12 @@ spec:
|
||||
- message
|
||||
type: object
|
||||
type: array
|
||||
externalURLs:
|
||||
description: ExternalURLs holds all external URLs of application child
|
||||
resources.
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
health:
|
||||
properties:
|
||||
message:
|
||||
@@ -633,10 +631,6 @@ spec:
|
||||
description: NamePrefix is a prefix appended to resources
|
||||
for kustomize apps
|
||||
type: string
|
||||
required:
|
||||
- namePrefix
|
||||
- imageTags
|
||||
- images
|
||||
type: object
|
||||
path:
|
||||
description: Path is a directory path within the repository
|
||||
@@ -670,9 +664,6 @@ spec:
|
||||
- source
|
||||
type: object
|
||||
type: array
|
||||
ingress:
|
||||
items: {}
|
||||
type: array
|
||||
observedAt: {}
|
||||
operationState:
|
||||
description: OperationState contains information about state of currently
|
||||
@@ -853,10 +844,6 @@ spec:
|
||||
description: NamePrefix is a prefix appended to
|
||||
resources for kustomize apps
|
||||
type: string
|
||||
required:
|
||||
- namePrefix
|
||||
- imageTags
|
||||
- images
|
||||
type: object
|
||||
path:
|
||||
description: Path is a directory path within the repository
|
||||
@@ -1092,10 +1079,6 @@ spec:
|
||||
description: NamePrefix is a prefix appended to resources
|
||||
for kustomize apps
|
||||
type: string
|
||||
required:
|
||||
- namePrefix
|
||||
- imageTags
|
||||
- images
|
||||
type: object
|
||||
path:
|
||||
description: Path is a directory path within the repository
|
||||
@@ -1312,10 +1295,6 @@ spec:
|
||||
description: NamePrefix is a prefix appended to resources
|
||||
for kustomize apps
|
||||
type: string
|
||||
required:
|
||||
- namePrefix
|
||||
- imageTags
|
||||
- images
|
||||
type: object
|
||||
path:
|
||||
description: Path is a directory path within the repository
|
||||
@@ -1902,7 +1881,7 @@ spec:
|
||||
- "20"
|
||||
- --operation-processors
|
||||
- "10"
|
||||
image: argoproj/argocd:latest
|
||||
image: argoproj/argocd:v1.0.0-rc1
|
||||
imagePullPolicy: Always
|
||||
name: argocd-application-controller
|
||||
ports:
|
||||
@@ -1949,7 +1928,7 @@ spec:
|
||||
- cp
|
||||
- /usr/local/bin/argocd-util
|
||||
- /shared
|
||||
image: argoproj/argocd:latest
|
||||
image: argoproj/argocd:v1.0.0-rc1
|
||||
imagePullPolicy: Always
|
||||
name: copyutil
|
||||
volumeMounts:
|
||||
@@ -2012,7 +1991,7 @@ spec:
|
||||
- argocd-repo-server
|
||||
- --redis
|
||||
- argocd-redis:6379
|
||||
image: argoproj/argocd:latest
|
||||
image: argoproj/argocd:v1.0.0-rc1
|
||||
imagePullPolicy: Always
|
||||
name: argocd-repo-server
|
||||
ports:
|
||||
@@ -2046,7 +2025,7 @@ spec:
|
||||
- argocd-server
|
||||
- --staticassets
|
||||
- /shared/app
|
||||
image: argoproj/argocd:latest
|
||||
image: argoproj/argocd:v1.0.0-rc1
|
||||
imagePullPolicy: Always
|
||||
name: argocd-server
|
||||
ports:
|
||||
@@ -2067,7 +2046,7 @@ spec:
|
||||
- -r
|
||||
- /app
|
||||
- /shared
|
||||
image: argoproj/argocd-ui:latest
|
||||
image: argoproj/argocd-ui:v1.0.0-rc1
|
||||
imagePullPolicy: Always
|
||||
name: ui
|
||||
volumeMounts:
|
||||
|
||||
@@ -185,10 +185,6 @@ spec:
|
||||
description: NamePrefix is a prefix appended to resources
|
||||
for kustomize apps
|
||||
type: string
|
||||
required:
|
||||
- namePrefix
|
||||
- imageTags
|
||||
- images
|
||||
type: object
|
||||
path:
|
||||
description: Path is a directory path within the repository
|
||||
@@ -419,10 +415,6 @@ spec:
|
||||
description: NamePrefix is a prefix appended to resources for
|
||||
kustomize apps
|
||||
type: string
|
||||
required:
|
||||
- namePrefix
|
||||
- imageTags
|
||||
- images
|
||||
type: object
|
||||
path:
|
||||
description: Path is a directory path within the repository containing
|
||||
@@ -488,6 +480,12 @@ spec:
|
||||
- message
|
||||
type: object
|
||||
type: array
|
||||
externalURLs:
|
||||
description: ExternalURLs holds all external URLs of application child
|
||||
resources.
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
health:
|
||||
properties:
|
||||
message:
|
||||
@@ -633,10 +631,6 @@ spec:
|
||||
description: NamePrefix is a prefix appended to resources
|
||||
for kustomize apps
|
||||
type: string
|
||||
required:
|
||||
- namePrefix
|
||||
- imageTags
|
||||
- images
|
||||
type: object
|
||||
path:
|
||||
description: Path is a directory path within the repository
|
||||
@@ -670,9 +664,6 @@ spec:
|
||||
- source
|
||||
type: object
|
||||
type: array
|
||||
ingress:
|
||||
items: {}
|
||||
type: array
|
||||
observedAt: {}
|
||||
operationState:
|
||||
description: OperationState contains information about state of currently
|
||||
@@ -853,10 +844,6 @@ spec:
|
||||
description: NamePrefix is a prefix appended to
|
||||
resources for kustomize apps
|
||||
type: string
|
||||
required:
|
||||
- namePrefix
|
||||
- imageTags
|
||||
- images
|
||||
type: object
|
||||
path:
|
||||
description: Path is a directory path within the repository
|
||||
@@ -1092,10 +1079,6 @@ spec:
|
||||
description: NamePrefix is a prefix appended to resources
|
||||
for kustomize apps
|
||||
type: string
|
||||
required:
|
||||
- namePrefix
|
||||
- imageTags
|
||||
- images
|
||||
type: object
|
||||
path:
|
||||
description: Path is a directory path within the repository
|
||||
@@ -1312,10 +1295,6 @@ spec:
|
||||
description: NamePrefix is a prefix appended to resources
|
||||
for kustomize apps
|
||||
type: string
|
||||
required:
|
||||
- namePrefix
|
||||
- imageTags
|
||||
- images
|
||||
type: object
|
||||
path:
|
||||
description: Path is a directory path within the repository
|
||||
@@ -1817,7 +1796,7 @@ spec:
|
||||
- "20"
|
||||
- --operation-processors
|
||||
- "10"
|
||||
image: argoproj/argocd:latest
|
||||
image: argoproj/argocd:v1.0.0-rc1
|
||||
imagePullPolicy: Always
|
||||
name: argocd-application-controller
|
||||
ports:
|
||||
@@ -1864,7 +1843,7 @@ spec:
|
||||
- cp
|
||||
- /usr/local/bin/argocd-util
|
||||
- /shared
|
||||
image: argoproj/argocd:latest
|
||||
image: argoproj/argocd:v1.0.0-rc1
|
||||
imagePullPolicy: Always
|
||||
name: copyutil
|
||||
volumeMounts:
|
||||
@@ -1927,7 +1906,7 @@ spec:
|
||||
- argocd-repo-server
|
||||
- --redis
|
||||
- argocd-redis:6379
|
||||
image: argoproj/argocd:latest
|
||||
image: argoproj/argocd:v1.0.0-rc1
|
||||
imagePullPolicy: Always
|
||||
name: argocd-repo-server
|
||||
ports:
|
||||
@@ -1961,7 +1940,7 @@ spec:
|
||||
- argocd-server
|
||||
- --staticassets
|
||||
- /shared/app
|
||||
image: argoproj/argocd:latest
|
||||
image: argoproj/argocd:v1.0.0-rc1
|
||||
imagePullPolicy: Always
|
||||
name: argocd-server
|
||||
ports:
|
||||
@@ -1982,7 +1961,7 @@ spec:
|
||||
- -r
|
||||
- /app
|
||||
- /shared
|
||||
image: argoproj/argocd-ui:latest
|
||||
image: argoproj/argocd-ui:v1.0.0-rc1
|
||||
imagePullPolicy: Always
|
||||
name: ui
|
||||
volumeMounts:
|
||||
|
||||
Reference in New Issue
Block a user