Skip to content

Commit 02608f4

Browse files
Update Helm release argo-cd to v9
1 parent 300956a commit 02608f4

File tree

4 files changed

+3
-226
lines changed

4 files changed

+3
-226
lines changed

charts/argo_cd/chart.k

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ schema Chart(helm.Chart):
1414
values : Values | any, optional
1515
chart : str, required, default is "argo-cd"
1616
repoURL : str, required, default is "https://argoproj.github.io/argo-helm"
17-
targetRevision : str, optional, default is "8.6.4"
17+
targetRevision : str, optional, default is "9.0.3"
1818
"""
1919
values?: Values | any
2020
chart: str = "argo-cd"
2121
repoURL: str = "https://argoproj.github.io/argo-helm"
22-
targetRevision?: str = "8.6.4"
22+
targetRevision?: str = "9.0.3"
2323

charts/argo_cd/values.schema.json

Lines changed: 0 additions & 147 deletions
Original file line numberDiff line numberDiff line change
@@ -1825,159 +1825,12 @@
18251825
"title": "annotations",
18261826
"type": "object"
18271827
},
1828-
"application.namespaces": {
1829-
"default": "",
1830-
"description": "Enables [Applications in any namespace]\n# List of additional namespaces where applications may be created in and reconciled from.\n# The namespace where Argo CD is installed to will always be allowed.\n# Set comma-separated list. (e.g. app-team-one, app-team-two)",
1831-
"required": [],
1832-
"title": "application.namespaces",
1833-
"type": "string"
1834-
},
1835-
"applicationsetcontroller.enable.progressive.syncs": {
1836-
"default": false,
1837-
"description": "Enables use of the Progressive Syncs capability",
1838-
"required": [],
1839-
"title": "applicationsetcontroller.enable.progressive.syncs",
1840-
"type": "boolean"
1841-
},
1842-
"applicationsetcontroller.namespaces": {
1843-
"default": "",
1844-
"description": "A list of glob patterns specifying where to look for ApplicationSet resources. (e.g. `\"argocd,argocd-appsets-*\"`)\n# For more information: https://argo-cd.readthedocs.io/en/stable/operator-manual/applicationset/Appset-Any-Namespace/",
1845-
"required": [],
1846-
"title": "applicationsetcontroller.namespaces",
1847-
"type": "string"
1848-
},
1849-
"applicationsetcontroller.policy": {
1850-
"default": "sync",
1851-
"description": "# ApplicationSet Properties\nModify how application is synced between the generator and the cluster. One of: `sync`, `create-only`, `create-update`, `create-delete`",
1852-
"required": [],
1853-
"title": "applicationsetcontroller.policy",
1854-
"type": "string"
1855-
},
1856-
"controller.ignore.normalizer.jq.timeout": {
1857-
"default": "1s",
1858-
"description": "JQ Path expression timeout\n# By default, the evaluation of a JQPathExpression is limited to one second.\n# If you encounter a \"JQ patch execution timed out\" error message due to a complex JQPathExpression\n# that requires more time to evaluate, you can extend the timeout period.",
1859-
"required": [],
1860-
"title": "controller.ignore.normalizer.jq.timeout",
1861-
"type": "string"
1862-
},
1863-
"controller.operation.processors": {
1864-
"default": 10,
1865-
"description": "Number of application operation processors",
1866-
"required": [],
1867-
"title": "controller.operation.processors",
1868-
"type": "integer"
1869-
},
1870-
"controller.repo.server.timeout.seconds": {
1871-
"default": 60,
1872-
"description": "Repo server RPC call timeout seconds.",
1873-
"required": [],
1874-
"title": "controller.repo.server.timeout.seconds",
1875-
"type": "integer"
1876-
},
1877-
"controller.self.heal.timeout.seconds": {
1878-
"default": 5,
1879-
"description": "Specifies timeout between application self heal attempts",
1880-
"required": [],
1881-
"title": "controller.self.heal.timeout.seconds",
1882-
"type": "integer"
1883-
},
1884-
"controller.status.processors": {
1885-
"default": 20,
1886-
"description": "# Controller Properties\nNumber of application status processors",
1887-
"required": [],
1888-
"title": "controller.status.processors",
1889-
"type": "integer"
1890-
},
1891-
"controller.sync.timeout.seconds": {
1892-
"default": 0,
1893-
"description": "Specifies the timeout after which a sync would be terminated. 0 means no timeout",
1894-
"required": [],
1895-
"title": "controller.sync.timeout.seconds",
1896-
"type": "integer"
1897-
},
18981828
"create": {
18991829
"default": true,
19001830
"description": "Create the argocd-cmd-params-cm configmap\nIf false, it is expected the configmap will be created by something else.",
19011831
"required": [],
19021832
"title": "create",
19031833
"type": "boolean"
1904-
},
1905-
"hydrator.enabled": {
1906-
"default": false,
1907-
"description": "Enable the hydrator feature (hydrator is in Alpha phase)",
1908-
"required": [],
1909-
"title": "hydrator.enabled",
1910-
"type": "boolean"
1911-
},
1912-
"otlp.address": {
1913-
"default": "",
1914-
"description": "# Generic parameters\nOpen-Telemetry collector address: (e.g. \"otel-collector:4317\")",
1915-
"required": [],
1916-
"title": "otlp.address",
1917-
"type": "string"
1918-
},
1919-
"reposerver.parallelism.limit": {
1920-
"default": 0,
1921-
"description": "# Repo-server properties\nLimit on number of concurrent manifests generate requests. Any value less the 1 means no limit.",
1922-
"required": [],
1923-
"title": "reposerver.parallelism.limit",
1924-
"type": "integer"
1925-
},
1926-
"server.basehref": {
1927-
"default": "/",
1928-
"description": "Value for base href in index.html. Used if Argo CD is running behind reverse proxy under subpath different from /",
1929-
"required": [],
1930-
"title": "server.basehref",
1931-
"type": "string"
1932-
},
1933-
"server.disable.auth": {
1934-
"default": false,
1935-
"description": "Disable Argo CD RBAC for user authentication",
1936-
"required": [],
1937-
"title": "server.disable.auth",
1938-
"type": "boolean"
1939-
},
1940-
"server.enable.gzip": {
1941-
"default": true,
1942-
"description": "Enable GZIP compression",
1943-
"required": [],
1944-
"title": "server.enable.gzip",
1945-
"type": "boolean"
1946-
},
1947-
"server.enable.proxy.extension": {
1948-
"default": false,
1949-
"description": "Enable proxy extension feature. (proxy extension is in Alpha phase)",
1950-
"required": [],
1951-
"title": "server.enable.proxy.extension",
1952-
"type": "boolean"
1953-
},
1954-
"server.insecure": {
1955-
"default": false,
1956-
"description": "# Server properties\nRun server without TLS\n# NOTE: This value should be set when you generate params by other means as it changes ports used by ingress template.",
1957-
"required": [],
1958-
"title": "server.insecure",
1959-
"type": "boolean"
1960-
},
1961-
"server.rootpath": {
1962-
"default": "",
1963-
"description": "Used if Argo CD is running behind reverse proxy under subpath different from /",
1964-
"required": [],
1965-
"title": "server.rootpath",
1966-
"type": "string"
1967-
},
1968-
"server.staticassets": {
1969-
"default": "/shared/app",
1970-
"description": "Directory path that contains additional static assets",
1971-
"required": [],
1972-
"title": "server.staticassets",
1973-
"type": "string"
1974-
},
1975-
"server.x.frame.options": {
1976-
"default": "sameorigin",
1977-
"description": "Set X-Frame-Options header in HTTP responses to value. To disable, set to \"\".",
1978-
"required": [],
1979-
"title": "server.x.frame.options",
1980-
"type": "string"
19811834
}
19821835
},
19831836
"required": [],

charts/argo_cd/values.schema.k

Lines changed: 0 additions & 76 deletions
Original file line numberDiff line numberDiff line change
@@ -1680,89 +1680,13 @@ schema ValuesConfigsParams:
16801680
----------
16811681
annotations : ValuesConfigsParamsAnnotations, optional
16821682
Annotations to be added to the argocd-cmd-params-cm ConfigMap
1683-
"application.namespaces" : str, optional, default is ""
1684-
Enables [Applications in any namespace]
1685-
# List of additional namespaces where applications may be created in and reconciled from.
1686-
# The namespace where Argo CD is installed to will always be allowed.
1687-
# Set comma-separated list. (e.g. app-team-one, app-team-two)
1688-
"applicationsetcontroller.enable.progressive.syncs" : bool, optional, default is False
1689-
Enables use of the Progressive Syncs capability
1690-
"applicationsetcontroller.namespaces" : str, optional, default is ""
1691-
A list of glob patterns specifying where to look for ApplicationSet resources. (e.g. `"argocd,argocd-appsets-*"`)
1692-
# For more information: https://argo-cd.readthedocs.io/en/stable/operator-manual/applicationset/Appset-Any-Namespace/
1693-
"applicationsetcontroller.policy" : str, optional, default is "sync"
1694-
# ApplicationSet Properties
1695-
Modify how application is synced between the generator and the cluster. One of: `sync`, `create-only`, `create-update`, `create-delete`
1696-
"controller.ignore.normalizer.jq.timeout" : str, optional, default is "1s"
1697-
JQ Path expression timeout
1698-
# By default, the evaluation of a JQPathExpression is limited to one second.
1699-
# If you encounter a "JQ patch execution timed out" error message due to a complex JQPathExpression
1700-
# that requires more time to evaluate, you can extend the timeout period.
1701-
"controller.operation.processors" : int, optional, default is 10
1702-
Number of application operation processors
1703-
"controller.repo.server.timeout.seconds" : int, optional, default is 60
1704-
Repo server RPC call timeout seconds.
1705-
"controller.self.heal.timeout.seconds" : int, optional, default is 5
1706-
Specifies timeout between application self heal attempts
1707-
"controller.status.processors" : int, optional, default is 20
1708-
# Controller Properties
1709-
Number of application status processors
1710-
"controller.sync.timeout.seconds" : int, optional, default is 0
1711-
Specifies the timeout after which a sync would be terminated. 0 means no timeout
17121683
create : bool, optional, default is True
17131684
Create the argocd-cmd-params-cm configmap
17141685
If false, it is expected the configmap will be created by something else.
1715-
"hydrator.enabled" : bool, optional, default is False
1716-
Enable the hydrator feature (hydrator is in Alpha phase)
1717-
"otlp.address" : str, optional, default is ""
1718-
# Generic parameters
1719-
Open-Telemetry collector address: (e.g. "otel-collector:4317")
1720-
"reposerver.parallelism.limit" : int, optional, default is 0
1721-
# Repo-server properties
1722-
Limit on number of concurrent manifests generate requests. Any value less the 1 means no limit.
1723-
"server.basehref" : str, optional, default is "/"
1724-
Value for base href in index.html. Used if Argo CD is running behind reverse proxy under subpath different from /
1725-
"server.disable.auth" : bool, optional, default is False
1726-
Disable Argo CD RBAC for user authentication
1727-
"server.enable.gzip" : bool, optional, default is True
1728-
Enable GZIP compression
1729-
"server.enable.proxy.extension" : bool, optional, default is False
1730-
Enable proxy extension feature. (proxy extension is in Alpha phase)
1731-
"server.insecure" : bool, optional, default is False
1732-
# Server properties
1733-
Run server without TLS
1734-
# NOTE: This value should be set when you generate params by other means as it changes ports used by ingress template.
1735-
"server.rootpath" : str, optional, default is ""
1736-
Used if Argo CD is running behind reverse proxy under subpath different from /
1737-
"server.staticassets" : str, optional, default is "/shared/app"
1738-
Directory path that contains additional static assets
1739-
"server.x.frame.options" : str, optional, default is "sameorigin"
1740-
Set X-Frame-Options header in HTTP responses to value. To disable, set to "".
17411686
"""
17421687
[...str]: any
17431688
annotations?: ValuesConfigsParamsAnnotations
1744-
"application.namespaces"?: str
1745-
"applicationsetcontroller.enable.progressive.syncs"?: bool
1746-
"applicationsetcontroller.namespaces"?: str
1747-
"applicationsetcontroller.policy"?: str
1748-
"controller.ignore.normalizer.jq.timeout"?: str
1749-
"controller.operation.processors"?: int
1750-
"controller.repo.server.timeout.seconds"?: int
1751-
"controller.self.heal.timeout.seconds"?: int
1752-
"controller.status.processors"?: int
1753-
"controller.sync.timeout.seconds"?: int
17541689
create?: bool
1755-
"hydrator.enabled"?: bool
1756-
"otlp.address"?: str
1757-
"reposerver.parallelism.limit"?: int
1758-
"server.basehref"?: str
1759-
"server.disable.auth"?: bool
1760-
"server.enable.gzip"?: bool
1761-
"server.enable.proxy.extension"?: bool
1762-
"server.insecure"?: bool
1763-
"server.rootpath"?: str
1764-
"server.staticassets"?: str
1765-
"server.x.frame.options"?: str
17661690

17671691
schema ValuesConfigsParamsAnnotations:
17681692
r"""

charts/charts.k

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ charts: helm.Charts = {
4444
argo_cd: {
4545
chart = "argo-cd"
4646
repoURL = "https://argoproj.github.io/argo-helm"
47-
targetRevision = "8.6.4"
47+
targetRevision = "9.0.3"
4848
schemaGenerator = "AUTO"
4949
crdGenerator = "TEMPLATE"
5050
}

0 commit comments

Comments
 (0)