Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Deploy releases/k8s-manifests 6877424 #93

Merged
merged 2 commits into from
May 10, 2023

Conversation

github-actions[bot]
Copy link

kubectl diff reports that applying 6877424 will change:

diff -uN /tmp/LIVE-1356975170/apps.v1.Deployment.third-places.third-places /tmp/MERGED-3423387748/apps.v1.Deployment.third-places.third-places
--- /tmp/LIVE-1356975170/apps.v1.Deployment.third-places.third-places	2023-05-10 21:28:13.481347597 +0000
+++ /tmp/MERGED-3423387748/apps.v1.Deployment.third-places.third-places	2023-05-10 21:28:13.493348268 +0000
@@ -63,7 +63,7 @@
             secretKeyRef:
               key: POSTGRES_PASSWORD
               name: postgresql
-        image: ghcr.io/codeforphilly/third-places:0.1.9
+        image: ghcr.io/codeforphilly/third-places:0.1.10
         imagePullPolicy: IfNotPresent
         livenessProbe:
           failureThreshold: 3
diff -uN /tmp/LIVE-1356975170/apps.v1.Deployment.third-places.third-places-frontend /tmp/MERGED-3423387748/apps.v1.Deployment.third-places.third-places-frontend
--- /tmp/LIVE-1356975170/apps.v1.Deployment.third-places.third-places-frontend	2023-05-10 21:28:13.481347597 +0000
+++ /tmp/MERGED-3423387748/apps.v1.Deployment.third-places.third-places-frontend	2023-05-10 21:28:13.493348268 +0000
@@ -1 +1,66 @@
-{}
+apiVersion: apps/v1
+kind: Deployment
+metadata:
+  labels:
+    app.kubernetes.io/component: frontend
+    app.kubernetes.io/instance: third-places
+    app.kubernetes.io/managed-by: Helm
+    app.kubernetes.io/name: third-places
+    app.kubernetes.io/version: 0.1.2
+    helm.sh/chart: third-places-0.1.0
+  name: third-places-frontend
+  namespace: third-places
+spec:
+  progressDeadlineSeconds: 600
+  replicas: 1
+  revisionHistoryLimit: 10
+  selector:
+    matchLabels:
+      app.kubernetes.io/component: frontend
+      app.kubernetes.io/instance: third-places
+      app.kubernetes.io/name: third-places
+  strategy:
+    rollingUpdate:
+      maxSurge: 25%
+      maxUnavailable: 25%
+    type: RollingUpdate
+  template:
+    metadata:
+      creationTimestamp: null
+      labels:
+        app.kubernetes.io/component: frontend
+        app.kubernetes.io/instance: third-places
+        app.kubernetes.io/name: third-places
+    spec:
+      containers:
+      - image: ghcr.io/codeforphilly/third-places/frontend:0.1.10
+        imagePullPolicy: IfNotPresent
+        livenessProbe:
+          failureThreshold: 3
+          httpGet:
+            path: /
+            port: http
+            scheme: HTTP
+          periodSeconds: 10
+          successThreshold: 1
+          timeoutSeconds: 1
+        name: third-places-frontend
+        ports:
+        - containerPort: 80
+          name: http
+          protocol: TCP
+        readinessProbe:
+          failureThreshold: 3
+          httpGet:
+            path: /
+            port: http
+            scheme: HTTP
+          periodSeconds: 10
+          successThreshold: 1
+          timeoutSeconds: 1
+        terminationMessagePath: /dev/termination-log
+        terminationMessagePolicy: File
+      dnsPolicy: ClusterFirst
+      restartPolicy: Always
+      schedulerName: default-scheduler
+      terminationGracePeriodSeconds: 30
diff -uN /tmp/LIVE-1356975170/networking.k8s.io.v1.Ingress.third-places.third-places /tmp/MERGED-3423387748/networking.k8s.io.v1.Ingress.third-places.third-places
--- /tmp/LIVE-1356975170/networking.k8s.io.v1.Ingress.third-places.third-places	2023-05-10 21:28:13.485347821 +0000
+++ /tmp/MERGED-3423387748/networking.k8s.io.v1.Ingress.third-places.third-places	2023-05-10 21:28:13.497348491 +0000
@@ -20,11 +20,25 @@
       paths:
       - backend:
           service:
-            name: third-places
+            name: third-places-frontend
             port:
-              number: 80
+              name: http
         path: /
         pathType: Prefix
+      - backend:
+          service:
+            name: third-places
+            port:
+              name: http
+        path: /api/
+        pathType: Prefix
+      - backend:
+          service:
+            name: third-places
+            port:
+              name: http
+        path: /admin/
+        pathType: Prefix
   tls:
   - hosts:
     - third-places.live.k8s.phl.io
diff -uN /tmp/LIVE-1356975170/v1.Service.third-places.third-places-frontend /tmp/MERGED-3423387748/v1.Service.third-places.third-places-frontend
--- /tmp/LIVE-1356975170/v1.Service.third-places.third-places-frontend	2023-05-10 21:28:13.485347821 +0000
+++ /tmp/MERGED-3423387748/v1.Service.third-places.third-places-frontend	2023-05-10 21:28:13.501348715 +0000
@@ -1 +1,28 @@
-{}
+apiVersion: v1
+kind: Service
+metadata:
+  labels:
+    app.kubernetes.io/component: frontend
+    app.kubernetes.io/instance: third-places
+    app.kubernetes.io/managed-by: Helm
+    app.kubernetes.io/name: third-places
+    app.kubernetes.io/version: 0.1.2
+    helm.sh/chart: third-places-0.1.0
+  name: third-places-frontend
+  namespace: third-places
+spec:
+  clusterIP: 10.128.0.0
+  clusterIPs:
+  - 10.128.0.0
+  internalTrafficPolicy: Cluster
+  ipFamilies:
+  - IPv4
+  ipFamilyPolicy: SingleStack
+  ports:
+  - name: http
+    port: 80
+    targetPort: http
+  selector:
+    app.kubernetes.io/component: frontend
+    app.kubernetes.io/instance: third-places
+    app.kubernetes.io/name: third-places

@themightychris themightychris merged commit ad66f1e into deploys/k8s-manifests May 10, 2023
1 check passed
@github-actions
Copy link
Author

kubectl apply output (excluding unchanged) for ad66f1e was:

customresourcedefinition.apiextensions.k8s.io/sealedsecrets.bitnami.com configured
clusterrole.rbac.authorization.k8s.io/grafana-clusterrole configured
clusterrole.rbac.authorization.k8s.io/prometheus-alertmanager configured
clusterrole.rbac.authorization.k8s.io/prometheus-pushgateway configured
clusterrolebinding.rbac.authorization.k8s.io/cert-manager-webhook:subjectaccessreviews configured
clusterrolebinding.rbac.authorization.k8s.io/sealed-secrets configured
mutatingwebhookconfiguration.admissionregistration.k8s.io/cert-manager-webhook configured
validatingwebhookconfiguration.admissionregistration.k8s.io/cert-manager-webhook configured
validatingwebhookconfiguration.admissionregistration.k8s.io/ingress-nginx-admission configured
configmap/cert-manager-webhook configured
rolebinding.rbac.authorization.k8s.io/cert-manager-webhook:dynamic-serving configured
configmap/grafana-dashboards-default configured
deployment.apps/grafana configured
deployment.apps/ingress-nginx-controller configured
deployment.apps/metrics-server configured
rolebinding.rbac.authorization.k8s.io/cert-manager:leaderelection configured
secret/promtail configured
statefulset.apps/loki configured
deployment.apps/prometheus-alertmanager configured
deployment.apps/prometheus-kube-state-metrics configured
deployment.apps/prometheus-pushgateway configured
deployment.apps/prometheus-server configured
serviceaccount/prometheus-kube-state-metrics configured
deployment.apps/sealed-secrets configured
rolebinding.rbac.authorization.k8s.io/sealed-secrets-key-admin configured
service/sealed-secrets configured
deployment.apps/third-places-frontend created
deployment.apps/third-places configured
ingress.networking.k8s.io/third-places configured
service/third-places-frontend created
statefulset.apps/third-places-postgresql configured
statefulset.apps/vaultwarden-postgresql configured

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant