Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding gateway type to apim deployment.toml #2160

Merged
merged 2 commits into from
Mar 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/agent-integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
helm install apim -n apk . --debug --wait --timeout 5m0s \
--set wso2.deployment.image.registry=docker.io \
--set wso2.deployment.image.respository=rakhitharr/wso2am \
--set wso2.deployment.image.digest=sha256:6f647d64753462736bb1bc22b6fe675413278a02623a9c12609b3bc4d1f4a0ef
--set wso2.deployment.image.digest=sha256:56c6625d60a01cba73cd8836d25f1469f6fec1e933e530d954064eeab4ef70b3
kubectl get pods -n apk
kubectl get svc -n apk

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,9 @@ password = {{ .Values.wso2.apim.configurations.databases.shared_db.password | qu
{{ $key }} = "{{ $value }}"
{{- end }}

[apim]
gateway_type = "Regular,APK"

{{- if .Values.wso2.apim.configurations.security.keystores.primary.enabled }}
[keystore.primary]
type = "JKS"
Expand Down Expand Up @@ -116,8 +119,8 @@ username= "${admin.username}"
password= "${admin.password}"
ws_endpoint = "ws://{{ $env.wsHostname }}"
wss_endpoint = "wss://{{ $env.wsHostname }}"
http_endpoint = "http://{{ $env.httpHostname }}"
https_endpoint = "https://{{ $env.httpHostname }}"
http_endpoint = "http://{{ $env.httpHostname }}:9090"
https_endpoint = "https://{{ $env.httpHostname }}:9095"
websub_event_receiver_http_endpoint = "http://{{ $env.websubHostname }}"
websub_event_receiver_https_endpoint = "https://{{ $env.websubHostname }}"

Expand Down
2 changes: 1 addition & 1 deletion test/apim-apk-agent-test/apim-cp-helm-chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ wso2:
# -- Azure ACR repository name consisting the image
repository: "rakhitharr/wso2am"
# -- Docker image digest
digest: "sha256:6f647d64753462736bb1bc22b6fe675413278a02623a9c12609b3bc4d1f4a0ef"
digest: "sha256:56c6625d60a01cba73cd8836d25f1469f6fec1e933e530d954064eeab4ef70b3"
# -- Refer to the Kubernetes documentation on updating images (https://kubernetes.io/docs/concepts/containers/images/#updating-images)
imagePullPolicy: Always

Expand Down
Loading