Skip to content

Commit

Permalink
Update values.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
tripathishikha1 authored Jun 19, 2024
1 parent 3fec83f commit 401930d
Showing 1 changed file with 37 additions and 13 deletions.
50 changes: 37 additions & 13 deletions charts/microservice/values.yaml
Original file line number Diff line number Diff line change
@@ -1,17 +1,41 @@
replicaCount: 3
#replicaCount: 3

#image:
# repository: nginx # Replace with your microservice image name
#pullPolicy: IfNotPresent
#tags:
# - "latest"
#- "stable"
#- "alpine" # Replace with your microservice image tag
#env:
# microservice:
# selectorLabels: "micro"
# fullname: "k8s"

#service:
#type: ClusterIP
#port: 80

app:
name: my-microservice

deployment:
replicas: 2 # Example number of replicas for your deployment

image:
repository: nginx # Replace with your microservice image name
pullPolicy: IfNotPresent
tags:
- "latest"
- "stable"
- "alpine" # Replace with your microservice image tag
env:
microservice:
selectorLabels: "micro"
fullname: "k8s"
repository: nginx # Replace with your Docker image repository URL/name
tag: latest # Replace with your Docker image tag

service:
type: ClusterIP
port: 80
port: 80 # Example service port
targetPort: 8080 # Example target port

configMap:
name: my-microservice-config
key: configKey

secret:
name: my-microservice-secret
key: secretKey
value: my-secret-value

0 comments on commit 401930d

Please sign in to comment.