forked from emissary-ingress/emissary
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request emissary-ingress#4308 from emissary-ingress/lukesh…
…u/test-cleanup Improve KAT test reliability
- Loading branch information
Showing
50 changed files
with
615 additions
and
951 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
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,34 @@ | ||
--- | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
name: {self.path.k8s} | ||
spec: | ||
selector: | ||
backend: {self.path.k8s} | ||
ports: | ||
- name: http | ||
protocol: TCP | ||
port: 80 | ||
targetPort: http | ||
--- | ||
apiVersion: apps/v1 | ||
kind: Deployment | ||
metadata: | ||
name: {self.path.k8s} | ||
spec: | ||
replicas: 1 | ||
selector: | ||
matchLabels: | ||
backend: {self.path.k8s} | ||
template: | ||
metadata: | ||
labels: | ||
backend: {self.path.k8s} | ||
spec: | ||
containers: | ||
- name: httpbin | ||
image: docker.io/kennethreitz/httpbin | ||
ports: | ||
- name: http | ||
containerPort: 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
--- | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
name: {self.path.k8s} | ||
spec: | ||
selector: | ||
backend: {self.path.k8s} | ||
ports: | ||
- protocol: UDP | ||
port: 8125 | ||
targetPort: 8125 | ||
name: statsd-metrics | ||
- protocol: TCP | ||
port: 80 | ||
targetPort: 3000 | ||
name: statsd-http | ||
--- | ||
apiVersion: apps/v1 | ||
kind: Deployment | ||
metadata: | ||
name: {self.path.k8s} | ||
spec: | ||
replicas: 1 | ||
selector: | ||
matchLabels: | ||
backend: {self.path.k8s} | ||
template: | ||
metadata: | ||
labels: | ||
backend: {self.path.k8s} | ||
spec: | ||
containers: | ||
- name: statsd | ||
image: {images[test-stats]} | ||
env: | ||
- name: STATSD_TEST_CLUSTER | ||
value: {self.target_cluster} | ||
restartPolicy: Always |
30 changes: 30 additions & 0 deletions
30
python/tests/integration/manifests/websocket_echo_backend.yaml
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,30 @@ | ||
--- | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
name: {self.path.k8s} | ||
spec: | ||
selector: | ||
backend: {self.path.k8s} | ||
ports: | ||
- protocol: TCP | ||
port: 80 | ||
targetPort: 8080 | ||
--- | ||
apiVersion: apps/v1 | ||
kind: Deployment | ||
metadata: | ||
name: {self.path.k8s} | ||
spec: | ||
replicas: 1 | ||
selector: | ||
matchLabels: | ||
backend: {self.path.k8s} | ||
template: | ||
metadata: | ||
labels: | ||
backend: {self.path.k8s} | ||
spec: | ||
containers: | ||
- name: websocket-echo-server | ||
image: docker.io/johnesmet/go-websocket-echo-server:latest |
Oops, something went wrong.