Skip to content

Commit

Permalink
Make cluster.proxy settings empty string by default (#1026)
Browse files Browse the repository at this point in the history
  • Loading branch information
uvegla authored Sep 26, 2023
1 parent b5aa48c commit 979672d
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 12 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project's packages adheres to [Semantic Versioning](http://semver.org/s

## [Unreleased]

### Fixed

- Fixed default values for `.proxy` and `.cluster.proxy` values and updated Helm values schema accordingly.

## [2.35.1] - 2023-09-21

### Changed
Expand Down
12 changes: 6 additions & 6 deletions helm/chart-operator/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,13 @@
"type": "object",
"properties": {
"http": {
"type": "null"
"type": "string"
},
"https": {
"type": "null"
"type": "string"
},
"noProxy": {
"type": "null"
"type": "string"
}
}
}
Expand Down Expand Up @@ -210,13 +210,13 @@
"type": "object",
"properties": {
"http": {
"type": "null"
"type": "string"
},
"https": {
"type": "null"
"type": "string"
},
"noProxy": {
"type": "null"
"type": "string"
}
}
},
Expand Down
12 changes: 6 additions & 6 deletions helm/chart-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ cluster:
# is getting overwritten by the top level proxy if set
# These values are generated via cluster-apps-operator
proxy:
noProxy:
http:
https:
noProxy: ""
http: ""
https: ""

clusterDNSIP: 172.31.0.10

Expand Down Expand Up @@ -60,9 +60,9 @@ project:

# set the HTTP_PROXY, HTTPS_PROXY and NO_PROXY variable
proxy:
noProxy:
http:
https:
noProxy: ""
http: ""
https: ""

# Resource names are truncated to 47 characters. Kubernetes allows 63 characters
# limit for resource names. When pods for deployments are created they have
Expand Down

0 comments on commit 979672d

Please sign in to comment.