Skip to content
This repository has been archived by the owner on Mar 27, 2024. It is now read-only.

Commit

Permalink
fix: missing files
Browse files Browse the repository at this point in the history
  • Loading branch information
MiroYld committed Jan 18, 2023
1 parent 21c0cb7 commit 388c374
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 12 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# deno-webserver
deno-webserser deployment using kubernetes

```
1) helm repo add miroyld https://miroyld.github.io/deno-webserver/
2) helm install deno-webserver miroyld/deno-webserver
```
2 changes: 1 addition & 1 deletion charts/deno/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.0
version: 0.2.0

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
9 changes: 1 addition & 8 deletions charts/deno/templates/mariadb.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
apiVersion: apps/v1
kind: Deployment
kind: StatefulSet
metadata:
annotations:
deployment.kubernetes.io/revision: "3"
Expand All @@ -8,17 +8,10 @@ metadata:
name: {{ .Values.server.mariadb.service.name }}
namespace: {{ .Values.server.mariadb.service.namespace }}
spec:
progressDeadlineSeconds: 600
replicas: {{ .Values.server.mariadb.service.replicas }}
revisionHistoryLimit: 10
selector:
matchLabels:
app: {{ .Values.server.mariadb.service.name }}
strategy:
rollingUpdate:
maxSurge: {{ .Values.server.mariadb.service.maxSurge }}
maxUnavailable: {{ .Values.server.mariadb.service.maxUnavailable }}
type: RollingUpdate
template:
metadata:
labels:
Expand Down
3 changes: 0 additions & 3 deletions charts/deno/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,6 @@ server:
service:
name: maria-db
port: 3306
maxSurge: 25%
maxUnavailable: 25%
replicas: 1
namespace: default

replicaCount: 3

0 comments on commit 388c374

Please sign in to comment.