Skip to content

Commit

Permalink
Merge pull request #6 from VatthanachaiW/develop
Browse files Browse the repository at this point in the history
Update config
  • Loading branch information
VatthanachaiW authored Feb 28, 2025
2 parents 905f949 + 08bf77e commit cd486ec
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion k8s/overlays/dev/patch-configmap.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v1
kind: ConfigMap
metadata:
name: hello-api-config
name: go-app-config
data:
APP_PORT: "8080"
ENV: "development"
4 changes: 2 additions & 2 deletions k8s/overlays/dev/patch-deployment.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: hello-api
name: go-app
spec:
replicas: 1
template:
spec:
containers:
- name: hello-api
- name: go-app
resources:
limits:
memory: "512Mi"
Expand Down
2 changes: 1 addition & 1 deletion k8s/overlays/prod/patch-configmap.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v1
kind: ConfigMap
metadata:
name: hello-api-config
name: go-app-config
data:
APP_PORT: "8080"
ENV: "production"
4 changes: 2 additions & 2 deletions k8s/overlays/prod/patch-deployment.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: hello-api
name: go-app
spec:
replicas: 1
template:
spec:
containers:
- name: hello-api
- name: go-app
resources:
limits:
memory: "512Mi"
Expand Down

0 comments on commit cd486ec

Please sign in to comment.