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

Remove admin port from gateway service #1778

Merged
merged 1 commit into from
Oct 4, 2023
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
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,4 @@ spec:
- name: endpoint1
protocol: TCP
port: 9095
- name: endpoint3
protocol: TCP
port: 9000
{{- end -}}
21 changes: 21 additions & 0 deletions test/cucumber-tests/CRs/artifacts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -577,3 +577,24 @@ spec:
group: gateway.networking.k8s.io
kind: Gateway
name: default
---
# We have removed the Envoy admin interface port from our helm gateway service yaml. So we need this one here.
apiVersion: v1
kind: Service
metadata:
name: apk-test-setup-wso2-apk-gateway-service
namespace : apk-integration-test

spec:
type: LoadBalancer
# label keys and values that must match in order to receive traffic for this service
selector:
app.kubernetes.io/app: gateway
app.kubernetes.io/release: apk-test-setup
ports:
- name: endpoint1
protocol: TCP
port: 9095
- name: endpoint3
protocol: TCP
port: 9000
Loading