Skip to content

Commit

Permalink
Lint chart
Browse files Browse the repository at this point in the history
  • Loading branch information
undera committed Dec 9, 2024
1 parent 20ac0eb commit 7d09fc2
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 25 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -143,5 +143,5 @@ jobs:
- name: Set up chart-testing
uses: helm/[email protected]
- name: Run chart-testing (lint)
run: ct lint --all ./charts
run: ct lint --all --validate-maintainers=false ./charts

7 changes: 0 additions & 7 deletions charts/ct.yaml

This file was deleted.

4 changes: 3 additions & 1 deletion charts/komoplane/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,10 @@ type: application
name: komoplane
description: Komodor tool to visualize Crossplane
icon: https://raw.githubusercontent.com/komodorio/komoplane/main/pkg/frontend/src/assets/logo.svg
maintainers:
- name: Komodor Team

version: 0.1.5
appVersion: "0.1.5"
appVersion: "0.1.5"

# docker build . -t komodorio/komoplane:unstable && kind load docker-image komodorio/komoplane:unstable && helm upgrade --install komoplane charts/komoplane --set image.tag=unstable
31 changes: 15 additions & 16 deletions charts/komoplane/values.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
komoplane:
# Flag for setting environment to debug mode
debug: false
mrCacheTTL: 1m # cache list of MRs for this time
mrdCacheTTL: 5m # cache list of MRDs for this time
mrCacheTTL: 1m # cache list of MRs for this time
mrdCacheTTL: 5m # cache list of MRDs for this time

replicaCount: 1

Expand All @@ -12,7 +12,7 @@ image:
# Overrides the image tag whose default is the chart appVersion.
tag: ""

imagePullSecrets: [ ]
imagePullSecrets: []
nameOverride: ""
fullnameOverride: ""

Expand All @@ -22,8 +22,8 @@ serviceAccount:
# The name of the service account to use.
# If not set and create is true, a name is generated using the fullname template
name: ""
annotations: { }
labels: { }
annotations: {}
labels: {}

resources:
requests:
Expand All @@ -48,8 +48,8 @@ updateStrategy:
type: RollingUpdate


podLabels: { }
podAnnotations: { }
podLabels: {}
podAnnotations: {}

podSecurityContext:
fsGroup: 2000
Expand All @@ -65,33 +65,32 @@ securityContext:
service:
type: ClusterIP
port: 8090
annotations: { }
labels: { }
annotations: {}
labels: {}

ingress:
enabled: false
className: ""
annotations: { }
labels: { }
annotations: {}
labels: {}
hosts:
- host: chart-example.local
paths:
- path: /
pathType: ImplementationSpecific
tls: [ ]
tls: []

autoscaling:
enabled: false
minReplicas: 1
maxReplicas: 100
targetCPUUtilizationPercentage: 80

nodeSelector: { }
nodeSelector: {}

extraArgs:
- --bind=0.0.0.0

tolerations: [ ]

affinity: { }
tolerations: []

affinity: {}

0 comments on commit 7d09fc2

Please sign in to comment.