diff --git a/demo/echo-service.yaml b/demo/echo-service.yaml new file mode 100644 index 00000000..25b810f4 --- /dev/null +++ b/demo/echo-service.yaml @@ -0,0 +1,33 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: echo +spec: + replicas: 1 + selector: + matchLabels: + app: echo + template: + metadata: + labels: + app: echo + spec: + containers: + - name: echo + image: mendhak/http-https-echo + ports: + - containerPort: 8080 + +--- + +apiVersion: v1 +kind: Service +metadata: + name: echo +spec: + type: ClusterIP + selector: + app: echo + ports: + - port: 8080 + targetPort: 8080 \ No newline at end of file diff --git a/install-istio.sh b/demo/install-istio.sh similarity index 100% rename from install-istio.sh rename to demo/install-istio.sh