From 0c98d9da6ac159358ad7c71f134f2e1dffd7d29a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=96=9F=E9=85=8C=20=E9=B5=AC=E5=85=84?= Date: Wed, 16 Mar 2022 06:28:56 +0900 Subject: [PATCH] Migrated to ssdnodes --- k8s.yaml => k8s/deployments.yaml | 42 +++++--------------------------- k8s/ingress.yaml | 32 ++++++++++++++++++++++++ 2 files changed, 38 insertions(+), 36 deletions(-) rename k8s.yaml => k8s/deployments.yaml (66%) create mode 100644 k8s/ingress.yaml diff --git a/k8s.yaml b/k8s/deployments.yaml similarity index 66% rename from k8s.yaml rename to k8s/deployments.yaml index eb137d3..597752e 100644 --- a/k8s.yaml +++ b/k8s/deployments.yaml @@ -1,22 +1,3 @@ -kind: PersistentVolume -apiVersion: v1 -metadata: - name: notify-mongodb - labels: - type: local - app: notify - srv: mongodb -spec: - storageClassName: local-storage - capacity: - storage: 1Gi - accessModes: - - ReadWriteOnce - hostPath: - path: "/mnt/notify" - ---- - apiVersion: apps/v1 kind: StatefulSet metadata: @@ -34,9 +15,11 @@ spec: app: notify srv: mongodb spec: + imagePullSecrets: + - name: registry-auth containers: - name: notify-mongodb - image: 192.168.80.4:32000/apps/mongodb:b00002 + image: registry.k8s.astropenguin.net/mongodb:3.4.4-r0 volumeMounts: - name: mongodata mountPath: /data/db @@ -67,9 +50,11 @@ spec: app: notify srv: node spec: + imagePullSecrets: + - name: registry-auth containers: - name: web - image: 192.168.80.4:32000/sites/notify:b00001 + image: registry.k8s.astropenguin.net/notify:2020.09.27 --- @@ -99,18 +84,3 @@ spec: ports: - port: 27017 targetPort: 27017 - ---- - -apiVersion: networking.k8s.io/v1beta1 -kind: Ingress -metadata: - name: notify-web -spec: - rules: - - host: notify.astropenguin.net - http: - paths: - - backend: - serviceName: notify-web - servicePort: 15602 diff --git a/k8s/ingress.yaml b/k8s/ingress.yaml new file mode 100644 index 0000000..514b0f0 --- /dev/null +++ b/k8s/ingress.yaml @@ -0,0 +1,32 @@ +apiVersion: networking.k8s.io/v1 +kind: Ingress +metadata: + name: default-notify-web + namespace: ingress-https +spec: + ingressClassName: nginx + tls: + - hosts: + - notify.astropenguin.net + secretName: any-astro-prod + rules: + - host: notify.astropenguin.net + http: + paths: + - pathType: ImplementationSpecific + backend: + service: + name: default-notify-web + port: + number: 15602 + +--- + +kind: Service +apiVersion: v1 +metadata: + name: default-notify-web + namespace: ingress-https +spec: + type: ExternalName + externalName: notify-web.default.svc.cluster.local