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 f89ecec #90

Merged
merged 3 commits into from
May 10, 2023

Conversation

github-actions[bot]
Copy link

kubectl diff reports that applying f89ecec will change:

diff -uN /tmp/LIVE-1241687774/apps.v1.Deployment.third-places.third-places /tmp/MERGED-3207270258/apps.v1.Deployment.third-places.third-places
--- /tmp/LIVE-1241687774/apps.v1.Deployment.third-places.third-places	2023-05-10 07:44:46.967125445 +0000
+++ /tmp/MERGED-3207270258/apps.v1.Deployment.third-places.third-places	2023-05-10 07:44:46.979125450 +0000
@@ -65,11 +65,29 @@
               name: postgresql
         image: ghcr.io/codeforphilly/third-places:0.1.2
         imagePullPolicy: IfNotPresent
+        livenessProbe:
+          failureThreshold: 3
+          httpGet:
+            path: /api/
+            port: http
+            scheme: HTTP
+          periodSeconds: 10
+          successThreshold: 1
+          timeoutSeconds: 1
         name: third-places
         ports:
         - containerPort: 80
           name: http
           protocol: TCP
+        readinessProbe:
+          failureThreshold: 3
+          httpGet:
+            path: /api/
+            port: http
+            scheme: HTTP
+          periodSeconds: 10
+          successThreshold: 1
+          timeoutSeconds: 1
         terminationMessagePath: /dev/termination-log
         terminationMessagePolicy: File
       dnsPolicy: ClusterFirst
diff -uN /tmp/LIVE-1241687774/networking.k8s.io.v1.Ingress.third-places.third-places /tmp/MERGED-3207270258/networking.k8s.io.v1.Ingress.third-places.third-places
--- /tmp/LIVE-1241687774/networking.k8s.io.v1.Ingress.third-places.third-places	2023-05-10 07:44:46.971125446 +0000
+++ /tmp/MERGED-3207270258/networking.k8s.io.v1.Ingress.third-places.third-places	2023-05-10 07:44:46.987125454 +0000
@@ -1 +1,31 @@
-{}
+apiVersion: networking.k8s.io/v1
+kind: Ingress
+metadata:
+  annotations:
+    cert-manager.io/cluster-issuer: letsencrypt-prod
+    kubernetes.io/ingress.class: nginx
+  labels:
+    app.kubernetes.io/component: application
+    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
+  namespace: third-places
+spec:
+  rules:
+  - host: third-places.live.k8s.phl.io
+    http:
+      paths:
+      - backend:
+          service:
+            name: third-places
+            port:
+              number: 80
+        path: /
+        pathType: Prefix
+  tls:
+  - hosts:
+    - third-places.live.k8s.phl.io
+    secretName: third-places-tls
diff -uN /tmp/LIVE-1241687774/v1.Service.third-places.third-places /tmp/MERGED-3207270258/v1.Service.third-places.third-places
--- /tmp/LIVE-1241687774/v1.Service.third-places.third-places	2023-05-10 07:44:46.971125446 +0000
+++ /tmp/MERGED-3207270258/v1.Service.third-places.third-places	2023-05-10 07:44:46.987125454 +0000
@@ -1 +1,28 @@
-{}
+apiVersion: v1
+kind: Service
+metadata:
+  labels:
+    app.kubernetes.io/component: application
+    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
+  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: application
+    app.kubernetes.io/instance: third-places
+    app.kubernetes.io/name: third-places

@themightychris themightychris merged commit cf9cc08 into deploys/k8s-manifests May 10, 2023
@github-actions
Copy link
Author

kubectl apply output (excluding unchanged) for cf9cc08 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 configured
ingress.networking.k8s.io/third-places created
service/third-places 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.

1 participant