-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: fill in AttachedRoutes in Gateways' Listeners status (#251)
* feat: fill in AttachedRoutes in Gateways' Listeners status * refactor: use metav1.LabelSelectorAsSelector for converting label selector to selector Co-authored-by: Jakub Warczarek <[email protected]> --------- Co-authored-by: Jakub Warczarek <[email protected]>
- Loading branch information
1 parent
931a76b
commit 7f7db79
Showing
10 changed files
with
963 additions
and
104 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,141 @@ | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
name: echo | ||
spec: | ||
ports: | ||
- protocol: TCP | ||
name: http | ||
port: 80 | ||
targetPort: http | ||
selector: | ||
app: echo | ||
--- | ||
apiVersion: apps/v1 | ||
kind: Deployment | ||
metadata: | ||
labels: | ||
app: echo | ||
name: echo | ||
spec: | ||
replicas: 1 | ||
selector: | ||
matchLabels: | ||
app: echo | ||
template: | ||
metadata: | ||
labels: | ||
app: echo | ||
spec: | ||
containers: | ||
- name: echo | ||
image: registry.k8s.io/e2e-test-images/agnhost:2.40 | ||
command: | ||
- /agnhost | ||
- netexec | ||
- --http-port=8080 | ||
ports: | ||
- containerPort: 8080 | ||
name: http | ||
env: | ||
- name: NODE_NAME | ||
valueFrom: | ||
fieldRef: | ||
fieldPath: spec.nodeName | ||
- name: POD_NAME | ||
valueFrom: | ||
fieldRef: | ||
fieldPath: metadata.name | ||
- name: NAMESPACE | ||
valueFrom: | ||
fieldRef: | ||
fieldPath: metadata.namespace | ||
- name: POD_IP | ||
valueFrom: | ||
fieldRef: | ||
fieldPath: status.podIP | ||
resources: | ||
requests: | ||
cpu: 10m | ||
--- | ||
kind: GatewayConfiguration | ||
apiVersion: gateway-operator.konghq.com/v1beta1 | ||
metadata: | ||
name: kong | ||
namespace: default | ||
spec: | ||
dataPlaneOptions: | ||
deployment: | ||
podTemplateSpec: | ||
spec: | ||
containers: | ||
- name: proxy | ||
# renovate: datasource=docker versioning=docker | ||
image: kong/kong-gateway:3.6 | ||
readinessProbe: | ||
initialDelaySeconds: 1 | ||
periodSeconds: 1 | ||
controlPlaneOptions: | ||
deployment: | ||
podTemplateSpec: | ||
spec: | ||
containers: | ||
- name: controller | ||
# renovate: datasource=docker versioning=docker | ||
image: kong/kubernetes-ingress-controller:3.1.5 | ||
readinessProbe: | ||
initialDelaySeconds: 1 | ||
periodSeconds: 1 | ||
--- | ||
apiVersion: gateway.networking.k8s.io/v1 | ||
kind: GatewayClass | ||
metadata: | ||
name: kong | ||
spec: | ||
controllerName: konghq.com/gateway-operator | ||
parametersRef: | ||
group: gateway-operator.konghq.com | ||
kind: GatewayConfiguration | ||
name: kong | ||
namespace: default | ||
--- | ||
apiVersion: gateway.networking.k8s.io/v1 | ||
kind: Gateway | ||
metadata: | ||
name: kong | ||
namespace: default | ||
spec: | ||
gatewayClassName: kong | ||
listeners: | ||
- name: http | ||
protocol: HTTP | ||
port: 80 | ||
allowedRoutes: | ||
kinds: | ||
- kind: HTTPRoute | ||
namespaces: | ||
from: Selector | ||
selector: | ||
matchLabels: | ||
# This label is added automatically as of K8s 1.22 to all namespaces | ||
kubernetes.io/metadata.name: default | ||
--- | ||
apiVersion: gateway.networking.k8s.io/v1 | ||
kind: HTTPRoute | ||
metadata: | ||
name: httproute-echo | ||
namespace: default | ||
annotations: | ||
konghq.com/strip-path: "true" | ||
spec: | ||
parentRefs: | ||
- name: kong | ||
rules: | ||
- matches: | ||
- path: | ||
type: PathPrefix | ||
value: /echo | ||
backendRefs: | ||
- name: echo | ||
kind: Service | ||
port: 80 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.