mirror of
https://github.com/ION606/argo-temp.git
synced 2026-05-15 04:16:53 +00:00
added initial istio BLAHAJ code
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
name: reef
|
||||
namespace: demo
|
||||
spec:
|
||||
replicas: 1
|
||||
selector: { matchLabels: { app: reef } }
|
||||
template:
|
||||
metadata:
|
||||
labels: { app: reef }
|
||||
spec:
|
||||
containers:
|
||||
- name: app
|
||||
image: blahaj-bun:dev
|
||||
imagePullPolicy: IfNotPresent
|
||||
ports: [{ name: http, containerPort: 8080 }]
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
name: reef
|
||||
namespace: demo
|
||||
spec:
|
||||
selector: { app: reef }
|
||||
ports: [{ name: http, port: 80, targetPort: 8080 }]
|
||||
Reference in New Issue
Block a user