Skip to content

Commit

Permalink
Create deployment-service.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ChadenBA authored Apr 13, 2024
1 parent 9a3f5d3 commit 5a3f9a3
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions deployment-service.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
apiVersion: apps/v1
kind: Deployment # Kubernetes resource kind we are creating
metadata:
name: recipeapp-deployment
spec:
selector:
matchLabels:
app: recipe
replicas: 2 # Number of replicas that will be created for this deployment
template:
metadata:
labels:
app: recipe
spec:
containers:
- name: recipe
image: chaden/recipeapp:latest # Image that will be used to containers in the cluster
imagePullPolicy: Always
ports:
- containerPort: 8080 # The port that the container is running on in the cluster


---

apiVersion: v1 # Kubernetes API version
kind: Service # Kubernetes resource kind we are creating
metadata: # Metadata of the resource kind we are creating
name: recipe-ssvc
spec:
selector:
app: recipe
ports:
- protocol: "TCP"
port: 8080 # The port that the service is running on in the cluster
targetPort: 8080 # The port exposed by the service
type: LoadBalancer # type of the service.

0 comments on commit 5a3f9a3

Please sign in to comment.