Skip to content

Commit

Permalink
k8s 컴퓨팅 리소스 할당 비율 변경 (#14)
Browse files Browse the repository at this point in the history
* up: k8s 스케줄러 최적화

* up: 프로그램 버전 명
  • Loading branch information
parkgang committed Nov 10, 2021
1 parent 87788ca commit ca73f1e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion internal/pkg/project/project.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ package project

const (
AppName string = "oauth-server"
AppVersion string = "0.2.0"
AppVersion string = "0.2.1"
)
6 changes: 3 additions & 3 deletions k8s/prod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ spec:
- containerPort: 8080
resources:
requests:
cpu: 100m
memory: 50Mi
cpu: 5m
memory: 100Mi
limits:
cpu: 100m
cpu: 5m
memory: 100Mi
env:
- name: STAGES
Expand Down
6 changes: 3 additions & 3 deletions k8s/qa.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ spec:
- containerPort: 8080
resources:
requests:
cpu: 100m
memory: 50Mi
cpu: 5m
memory: 100Mi
limits:
cpu: 100m
cpu: 5m
memory: 100Mi
env:
- name: STAGES
Expand Down

0 comments on commit ca73f1e

Please sign in to comment.