-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial k8s "kustomizations" for the EKS cluster
We don't have a CSI driver in EKS yet, so I ended up disabling the PVC for mongo and using an on-node "emptyDir". I also disabled resource requests and limits in all our deployments while we were performance testing. We should re-enable both those features when possible.
- Loading branch information
Showing
11 changed files
with
228 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
apiVersion: apps/v1 | ||
kind: Deployment | ||
metadata: | ||
name: cb-metar | ||
spec: | ||
template: | ||
spec: | ||
containers: | ||
- name: cb-metar | ||
# FIXME: disable resource limits while we do performance tuning | ||
# resources: | ||
# requests: | ||
# memory: "1Gi" | ||
# cpu: "0.25" | ||
# limits: | ||
# memory: "8Gi" | ||
# cpu: "4" | ||
envFrom: | ||
- secretRef: | ||
name: cb-metar-secret | ||
volumeMounts: | ||
- name: cb-metar-settings-file | ||
mountPath: /usr/app/settings/cb-metar/settings.json | ||
subPath: settings.json | ||
readOnly: true | ||
imagePullPolicy: Always # Since we track a long-lived tag | ||
imagePullSecrets: | ||
- name: mats-ghcr | ||
volumes: | ||
- name: cb-metar-settings-file | ||
configMap: | ||
name: cb-metar-config |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
resources: | ||
- ../../../base/cb-metar | ||
|
||
patchesStrategicMerge: | ||
- deployment.yaml | ||
|
||
images: | ||
- name: ghcr.io/noaa-gsl/mats/development/cb-metar | ||
newTag: development | ||
|
||
configMapGenerator: | ||
- name: cb-metar-config | ||
files: | ||
- settings.json # Should mirror the appropriate settings.json file in mats-settings | ||
|
||
secretGenerator: | ||
- name: cb-metar-secret | ||
envs: | ||
- .env # Should contain mongo_url, root_url, and delay |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
apiVersion: apps/v1 | ||
kind: Deployment | ||
metadata: | ||
name: home | ||
spec: | ||
template: | ||
spec: | ||
containers: | ||
- name: home | ||
# FIXME: disable resource limits while we do performance tuning | ||
# resources: | ||
# requests: | ||
# memory: "1Gi" | ||
# cpu: "0.25" | ||
# limits: | ||
# memory: "8Gi" | ||
# cpu: "4" | ||
volumeMounts: | ||
- name: home-settings-file | ||
mountPath: /app/settings.json | ||
subPath: settings.json | ||
readOnly: true | ||
imagePullPolicy: Always # Since we track a long-lived tag | ||
imagePullSecrets: | ||
- name: mats-ghcr | ||
volumes: | ||
- name: home-settings-file | ||
configMap: | ||
name: home-config |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
resources: | ||
- ../../../base/home | ||
|
||
patchesStrategicMerge: | ||
- deployment.yaml | ||
|
||
images: | ||
- name: ghcr.io/noaa-gsl/mats/development/home | ||
newTag: development | ||
|
||
configMapGenerator: | ||
- name: home-config | ||
files: | ||
- settings.json # Should mirror the appropriate settings.json file in mats-settings |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
apiVersion: networking.k8s.io/v1 | ||
kind: Ingress | ||
metadata: | ||
annotations: | ||
# Omit the rewrite-target annotation as it causes problems with Meteor's ROOT_URL | ||
nginx.ingress.kubernetes.io/use-regex: "true" | ||
name: mats-apps | ||
# namespace: mats-dev | ||
spec: | ||
ingressClassName: nginx | ||
rules: | ||
- http: | ||
paths: | ||
- path: /mats-dev/cb-metar | ||
pathType: Prefix | ||
backend: | ||
service: | ||
name: cb-metar | ||
port: | ||
number: 80 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
apiVersion: networking.k8s.io/v1 | ||
kind: Ingress | ||
metadata: | ||
annotations: | ||
# Use nginx's rewrite-target to strip the path prefix before sending the request to the home service | ||
nginx.ingress.kubernetes.io/use-regex: "true" | ||
nginx.ingress.kubernetes.io/rewrite-target: /$1 | ||
name: mats-home | ||
# namespace: mats-dev | ||
spec: | ||
ingressClassName: nginx | ||
rules: | ||
- http: | ||
paths: | ||
# Note - this rewrite rule can cause issues if the "path" with the regex capture group | ||
# for the nginx rewrite-target gets longer than the paths in ingress-mats.yaml. | ||
# This has happened before with the rule for `/mats-dev/ptype`. If multiple paths match, | ||
# Kubernetes will prefer the longer path. | ||
- path: /mats-dev/(.*) | ||
pathType: Prefix | ||
backend: | ||
service: | ||
name: home | ||
port: | ||
number: 80 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
resources: | ||
- cb-metar | ||
- home | ||
- mongo | ||
- ingress-apps.yaml | ||
- ingress-home.yaml | ||
commonLabels: | ||
environment: dev |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
$patch: delete | ||
apiVersion: v1 | ||
kind: PersistentVolumeClaim | ||
metadata: | ||
name: mongo-pv-claim | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
apiVersion: apps/v1 | ||
kind: Deployment | ||
metadata: | ||
name: mongodb | ||
spec: | ||
template: | ||
spec: | ||
containers: | ||
- name: mongodb | ||
# FIXME: disable resource limits while we do performance tuning | ||
# resources: | ||
# requests: | ||
# memory: "2Gi" | ||
# cpu: "1" | ||
# limits: | ||
# memory: "2Gi" | ||
# cpu: "1" | ||
envFrom: | ||
- secretRef: | ||
name: mongo-secret | ||
volumeMounts: | ||
- name: mongo-config-file | ||
mountPath: /etc/mongod.conf | ||
readOnly: true | ||
# FIXME: Switch to an in-memory store until we have a CSI driver | ||
- name: mongo-ephemeral-storage | ||
mountPath: /data/db | ||
- $patch: delete | ||
name: mongo-persistent-storage | ||
volumes: | ||
- name: mongo-config-file | ||
configMap: | ||
name: mongo-config | ||
# FIXME: Switch to an in-memory store until we have a CSI driver | ||
- $patch: delete | ||
name: mongo-persistent-storage | ||
- name: mongo-ephemeral-storage | ||
emptyDir: | ||
sizeLimit: "2Gi" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
resources: | ||
- ../../../base/mongo | ||
|
||
patchesStrategicMerge: | ||
- deployment.yaml | ||
|
||
patches: | ||
# FIXME: We want to use an in-memory store until we have a CSI driver | ||
- path: delete-pvc.yaml | ||
target: | ||
kind: PersistentVolumeClaim | ||
name: mongo-pv-claim | ||
|
||
configMapGenerator: | ||
- name: mongo-config | ||
files: | ||
- mongod.conf | ||
|
||
secretGenerator: | ||
- name: mongo-secret | ||
envs: | ||
- .env.mongo.secret # Should contain user and password |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
systemLog: | ||
destination: file | ||
path: "/var/log/mongodb/mongod.log" | ||
logAppend: true | ||
storage: | ||
journal: | ||
enabled: true | ||
processManagement: | ||
fork: true | ||
net: | ||
bindIp: 127.0.0.1 | ||
port: 27017 | ||
setParameter: | ||
enableLocalhostAuthBypass: false |