-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updates chart to use starter-kit base chart (#3)
- Uses starter-kit v0.6.0 subchart from https://charts.cloudnativetoolkit.dev - Adds subcharts and Chart.lock to gitignore Signed-off-by: Sean Sundberg <[email protected]>
- Loading branch information
Showing
10 changed files
with
61 additions
and
275 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,3 +5,6 @@ localdev-config.json | |
server/localdev-config.json | ||
/main | ||
/edge-access-secret.yaml | ||
*.tgz | ||
*.iml | ||
Chart.lock |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,11 @@ | ||
apiVersion: v1 | ||
apiVersion: v2 | ||
appVersion: "1.0" | ||
description: A Helm chart for Kubernetes | ||
name: base | ||
version: 1.1.4 | ||
branch: stable | ||
|
||
dependencies: | ||
- name: starter-kit | ||
version: 0.6.0 | ||
repository: https://charts.cloudnativetoolkit.dev/ | ||
alias: base |
Empty file.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,47 +1,59 @@ | ||
# Default values for template-node-typescript. | ||
# This is a YAML-formatted file. | ||
# Declare variables to be passed into your templates. | ||
global: {} | ||
global: | ||
tlsSecretName: "" | ||
ingressSubdomain: "" | ||
|
||
replicaCount: 1 | ||
logLevel: "debug" | ||
base: | ||
runtime: golang | ||
|
||
image: | ||
repository: replace | ||
tag: replace | ||
pullPolicy: IfNotPresent | ||
port: 8080 | ||
image: | ||
repository: replace | ||
tag: replace | ||
pullPolicy: IfNotPresent | ||
port: 8080 | ||
|
||
nameOverride: "" | ||
fullnameOverride: "" | ||
|
||
service: | ||
type: ClusterIP | ||
port: 80 | ||
|
||
route: | ||
enabled: false | ||
|
||
ingress: | ||
enabled: true | ||
appid: | ||
autoscaling: | ||
enabled: false | ||
minReplicas: 1 | ||
maxReplicas: 100 | ||
targetCPUUtilizationPercentage: 80 | ||
|
||
# resources: {} | ||
# We usually recommend not to specify default resources and to leave this as a conscious | ||
# choice for the user. This also increases chances charts run on environments with little | ||
# resources, such as Minikube. If you do want to specify resources, uncomment the following | ||
# lines, adjust them as necessary, and remove the curly braces after 'resources:'. | ||
# limits: | ||
# cpu: 100m | ||
# memory: 128Mi | ||
# requests: | ||
# cpu: 100m | ||
# memory: 128Mi | ||
|
||
route: | ||
enabled: true | ||
|
||
ingress: | ||
enabled: false | ||
# web or app - https://cloud.ibm.com/docs/services/appid?topic=appid-kube-auth | ||
requestType: web | ||
|
||
# host: hello | ||
namespaceInHost: true | ||
subdomain: containers.appdomain.cloud | ||
path: "/" | ||
|
||
# tlsSecretName: "" | ||
|
||
vcsInfo: | ||
repoUrl: "" | ||
branch: "" | ||
|
||
partOf: "" | ||
|
||
connectsTo: "" | ||
|
||
runtime: "" | ||
env: | ||
- name: IMAGE_NAME | ||
valueFrom: | ||
fieldRef: | ||
apiVersion: v1 | ||
fieldPath: metadata.name | ||
- name: LOG_LEVEL | ||
value: "debug" | ||
|
||
envFrom: | ||
- configMapRef: | ||
name: jaeger-config | ||
optional: true | ||
- secretRef: | ||
name: jaeger-access | ||
optional: true | ||
|
||
partOf: "" | ||
connectsTo: "" |