Skip to content

Commit

Permalink
Merge pull request #110 from soharaki/master
Browse files Browse the repository at this point in the history
Bump k8s manifests up to ~> ver 1.20
  • Loading branch information
fredsted authored May 27, 2021
2 parents 8b65e38 + 35896c3 commit 319bfbd
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 10 deletions.
12 changes: 6 additions & 6 deletions kubernetes/ingress.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
apiVersion: extensions/v1beta1
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: webhook
Expand All @@ -11,9 +11,9 @@ spec:
http:
paths:
- path: /
pathType: Prefix
backend:
serviceName: webhook
servicePort: 8084
tls:
- hosts:
- webhook.localhost
service:
name: webhook
port:
number: 8084
6 changes: 4 additions & 2 deletions kubernetes/laravel-echo-server.deployment.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@

apiVersion: extensions/v1beta1
apiVersion: apps/v1
kind: Deployment
metadata:
name: laravel-echo-server
Expand All @@ -10,6 +9,9 @@ spec:
replicas: 1
revisionHistoryLimit: 10
strategy: {}
selector:
matchLabels:
app: laravel-echo-server
template:
metadata:
labels:
Expand Down
5 changes: 4 additions & 1 deletion kubernetes/redis.deployment.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
apiVersion: extensions/v1beta1
apiVersion: apps/v1
kind: Deployment
metadata:
labels:
Expand All @@ -8,6 +8,9 @@ metadata:
spec:
replicas: 1
strategy: {}
selector:
matchLabels:
app: redis
template:
metadata:
labels:
Expand Down
5 changes: 4 additions & 1 deletion kubernetes/webhook.deployment.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
apiVersion: extensions/v1beta1
apiVersion: apps/v1
kind: Deployment
metadata:
#annotations:
Expand All @@ -9,6 +9,9 @@ metadata:
spec:
replicas: 1
strategy: {}
selector:
matchLabels:
app: webhook
template:
metadata:
labels:
Expand Down

0 comments on commit 319bfbd

Please sign in to comment.