Skip to content

Commit

Permalink
chore: fix missing separators; reformat
Browse files Browse the repository at this point in the history
  • Loading branch information
kikkomep committed Jan 12, 2024
1 parent d3fd22c commit c781872
Show file tree
Hide file tree
Showing 10 changed files with 18 additions and 28 deletions.
3 changes: 1 addition & 2 deletions k8s/lifemonitor-web/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.


---
apiVersion: v1
appVersion: '0.5.4'
description: A Helm chart for Kubernetes
Expand Down
3 changes: 1 addition & 2 deletions k8s/lifemonitor-web/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.


---
apiVersion: v1
kind: ConfigMap
metadata:
Expand Down
3 changes: 1 addition & 2 deletions k8s/lifemonitor-web/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.


---
apiVersion: apps/v1
kind: Deployment
metadata:
Expand Down
3 changes: 1 addition & 2 deletions k8s/lifemonitor-web/templates/ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.


---
{{- $fullname := include "lifemonitor-web.fullname" . -}}
{{- $newStyle := semverCompare ">=1.18.0" .Capabilities.KubeVersion.GitVersion -}}
{{- if semverCompare ">=1.17-0" .Capabilities.KubeVersion.GitVersion }}
Expand Down
3 changes: 1 addition & 2 deletions k8s/lifemonitor-web/templates/monitoring.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.


---
{{- if .Values.monitoring.enabled -}}
apiVersion: v1
kind: Service
Expand Down
3 changes: 1 addition & 2 deletions k8s/lifemonitor-web/templates/nginx.configmap.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.


---
apiVersion: v1
kind: ConfigMap
metadata:
Expand Down
3 changes: 1 addition & 2 deletions k8s/lifemonitor-web/templates/promtail.configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.


---
{{- if .Values.monitoring.loki.enabled }}
---
apiVersion: v1
Expand Down
3 changes: 1 addition & 2 deletions k8s/lifemonitor-web/templates/service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.


---
apiVersion: v1
kind: Service
metadata:
Expand Down
21 changes: 10 additions & 11 deletions k8s/lifemonitor-web/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.


# Default values for lifemonitor-web.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
Expand All @@ -30,10 +29,10 @@ image:
tag: latest
pullPolicy: IfNotPresent

nameOverride: ""
fullnameOverride: ""
nameOverride: ''
fullnameOverride: ''

externalServerName: "localhost"
externalServerName: 'localhost'

# Manage maintenance mode
maintenanceMode:
Expand All @@ -42,8 +41,8 @@ maintenanceMode:

# Setting for the LifeMonitor Backend API
backend:
apiUrl: ""
clientId: ""
apiUrl: ''
clientId: ''

service:
type: NodePort
Expand Down Expand Up @@ -78,7 +77,7 @@ ingress:
hosts:
- host: localhost
paths:
- "/"
- '/'
# configure TLS for the ingress
tls:
- secretName: lifemonitor-web-tls
Expand All @@ -97,11 +96,11 @@ resources:
# cpu: 100m
# memory: 128Mi
requests:
memory: "4096Mi"
cpu: "1000m"
memory: '4096Mi'
cpu: '1000m'
limits:
memory: "7680Mi"
cpu: "1800m"
memory: '7680Mi'
cpu: '1800m'

nodeSelector: {}

Expand Down
1 change: 0 additions & 1 deletion k8s/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.


# Default values for lifemonitor-web.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
Expand Down

0 comments on commit c781872

Please sign in to comment.