Skip to content
This repository has been archived by the owner on Jul 4, 2024. It is now read-only.

Commit

Permalink
Upgrade Kyma version (#2067)
Browse files Browse the repository at this point in the history
* Upgrade Kyma version

* Update deployment.yaml

Disable audt log

* Remove Secured App Type configuration (#2083)

* Remove Secured App Type configuration

* Bump values.yaml

* Fix unit tests

* Remove leftover

* Update deps (#2082)

* Update deps

* Update components which depend on director

* Bump values.yaml

* Bump ORD service

* Fix go sum

* Tweak go sum

* Adapt sys broker

* fix deployment of ext mock

* fix ext mock servers

* Update values.yaml

* Enable audit log

* Change version to 1.24.8

* Configure metrics and health address in operations controller

* Set namespace for istio operator

* Increase timeout

* Update values.yaml

* Minor improvement

* Lower timeout to 15s

* Increase http client timeout in ord-aggregator test

Co-authored-by: Nikolay Mateev <bgdunkers@gmail.com>
Co-authored-by: kkabakchiev <kiril.kabakchiev@sap.com>
  • Loading branch information
3 people authored Nov 19, 2021
1 parent 42343f4 commit 8cc8c7f
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ spec:
name: https
- env:
- name: SERVER_METRIC_ADDRESS
value: "127.0.0.1:{{ .Values.metrics.port }}"
value: ":{{ .Values.metrics.port }}"
- name: SERVER_HEALTH_ADDRESS
value: "127.0.0.1:{{ .Values.health.port }}"
value: ":{{ .Values.health.port }}"
- name: SERVER_ENABLE_LEADER_ELECTION
value: "true"
- name: GRAPHQL_CLIENT_GRAPHQL_ENDPOINT
Expand Down
2 changes: 1 addition & 1 deletion chart/compass/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ global:
version: "0a651695"
external_services_mock:
dir:
version: "PR-2105"
version: "PR-2067"
console:
dir:
version: "PR-47"
Expand Down
10 changes: 5 additions & 5 deletions components/external-services-mock/cmd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ func initDefaultServer(cfg config, key *rsa.PrivateKey) *http.Server {
selfRegRouter.HandleFunc(fmt.Sprintf("/{%s}", selfreg.NamePath), selfRegisterHandler.HandleSelfRegCleanup).Methods(http.MethodDelete)

return &http.Server{
Addr: fmt.Sprintf("127.0.0.1:%d", cfg.Port),
Addr: fmt.Sprintf(":%d", cfg.Port),
Handler: router,
}
}
Expand All @@ -188,7 +188,7 @@ func initCertSecuredORDServer(cfg config) *http.Server {
router.HandleFunc("/external-api/spec/flapping", apispec.FlappingHandleFunc())

return &http.Server{
Addr: fmt.Sprintf("127.0.0.1:%d", cfg.ORDServers.CertPort),
Addr: fmt.Sprintf(":%d", cfg.ORDServers.CertPort),
Handler: router,
}
}
Expand All @@ -205,7 +205,7 @@ func initUnsecuredORDServer(cfg config) *http.Server {
router.HandleFunc("/external-api/spec/flapping", apispec.FlappingHandleFunc())

return &http.Server{
Addr: fmt.Sprintf("127.0.0.1:%d", cfg.ORDServers.UnsecuredPort),
Addr: fmt.Sprintf(":%d", cfg.ORDServers.UnsecuredPort),
Handler: router,
}
}
Expand All @@ -223,7 +223,7 @@ func initBasicSecuredORDServer(cfg config) *http.Server {
router.HandleFunc("/external-api/spec/flapping", apispec.FlappingHandleFunc())

return &http.Server{
Addr: fmt.Sprintf("127.0.0.1:%d", cfg.ORDServers.BasicPort),
Addr: fmt.Sprintf(":%d", cfg.ORDServers.BasicPort),
Handler: router,
}
}
Expand All @@ -241,7 +241,7 @@ func initOauthSecuredORDServer(cfg config, key *rsa.PrivateKey) *http.Server {
router.HandleFunc("/external-api/spec/flapping", apispec.FlappingHandleFunc())

return &http.Server{
Addr: fmt.Sprintf("127.0.0.1:%d", cfg.ORDServers.OauthPort),
Addr: fmt.Sprintf(":%d", cfg.ORDServers.OauthPort),
Handler: router,
}
}
Expand Down
2 changes: 1 addition & 1 deletion installation/resources/KYMA_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.23.1
1.24.8
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ data:
apiVersion: install.istio.io/v1alpha1
kind: IstioOperator
metadata:
name: istio-system
namespace: istio-system
spec:
values:
pilot:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ data:
apiVersion: install.istio.io/v1alpha1
kind: IstioOperator
metadata:
name: istio-system
namespace: istio-system
spec:
values:
pilot:
Expand Down

0 comments on commit 8cc8c7f

Please sign in to comment.