apiVersion: v1 kind: Namespace metadata: name: cow --- apiVersion: build.openshift.io/v1 kind: BuildConfig metadata: name: cow namespace: cow spec: output: to: kind: ImageStreamTag name: cow:latest source: type: Binary binary: {} strategy: type: Docker dockerStrategy: {} --- apiVersion: image.openshift.io/v1 kind: ImageStream metadata: name: cow namespace: cow --- apiVersion: apps/v1 kind: Deployment metadata: name: cow namespace: cow spec: replicas: 1 selector: matchLabels: app: cow template: metadata: labels: app: cow spec: containers: - name: httpd image: image-registry.openshift-image-registry.svc:5000/cow/cow:latest ports: - containerPort: 8080 resources: limits: cpu: 50m memory: 64Mi requests: cpu: 10m memory: 32Mi --- apiVersion: v1 kind: Service metadata: name: cow namespace: cow spec: selector: app: cow ports: - port: 8080 targetPort: 8080 --- apiVersion: route.openshift.io/v1 kind: Route metadata: name: josieco-de namespace: cow spec: host: josieco.de to: kind: Service name: cow port: targetPort: 8080 tls: termination: edge insecureEdgeTerminationPolicy: Redirect --- apiVersion: route.openshift.io/v1 kind: Route metadata: name: archlinux-ch namespace: cow spec: host: archlinux.ch to: kind: Service name: cow port: targetPort: 8080 tls: termination: edge insecureEdgeTerminationPolicy: Redirect --- apiVersion: route.openshift.io/v1 kind: Route metadata: name: josie-town namespace: cow spec: host: josie.town to: kind: Service name: cow port: targetPort: 8080 tls: termination: edge insecureEdgeTerminationPolicy: Redirect --- apiVersion: route.openshift.io/v1 kind: Route metadata: name: josie-xyz namespace: cow spec: host: josie.xyz to: kind: Service name: cow port: targetPort: 8080 tls: termination: edge insecureEdgeTerminationPolicy: Redirect --- apiVersion: route.openshift.io/v1 kind: Route metadata: name: josie-wiki namespace: cow spec: host: josie.wiki to: kind: Service name: cow port: targetPort: 8080 tls: termination: edge insecureEdgeTerminationPolicy: Redirect --- apiVersion: route.openshift.io/v1 kind: Route metadata: name: josie-cloud namespace: cow spec: host: josie.cloud to: kind: Service name: cow port: targetPort: 8080 tls: termination: edge insecureEdgeTerminationPolicy: Redirect --- apiVersion: route.openshift.io/v1 kind: Route metadata: name: container-mom namespace: cow spec: host: container.mom to: kind: Service name: cow port: targetPort: 8080 tls: termination: edge insecureEdgeTerminationPolicy: Redirect