-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add hello-world-2.4.0-68514ab8bb32083e5b83c67873f2be6af757f1b2.tgz
hello-world-2.4.0-68514ab8bb32083e5b83c67873f2be6af757f1b2.tgz-meta/README.md hello-world-2.4.0-68514ab8bb32083e5b83c67873f2be6af757f1b2.tgz-meta/main.yaml hello-world-2.4.0-68514ab8bb32083e5b83c67873f2be6af757f1b2.tgz-meta/values.schema.json
- Loading branch information
1 parent
d6f24f9
commit d4e93ff
Showing
5 changed files
with
348 additions
and
1 deletion.
There are no files selected for viewing
Binary file not shown.
9 changes: 9 additions & 0 deletions
9
hello-world-2.4.0-68514ab8bb32083e5b83c67873f2be6af757f1b2.tgz-meta/README.md
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# hello-world-app | ||
|
||
A very barebones app for testing features of the Giant Swarm App Platform. | ||
|
||
It contains just enough to deploy your first Hello World website on your cluster. | ||
|
||
## Configuration | ||
|
||
Please refer to the chart's [README.md](https://github.com/giantswarm/hello-world-app/blob/main/helm/hello-world/README.md). |
11 changes: 11 additions & 0 deletions
11
hello-world-2.4.0-68514ab8bb32083e5b83c67873f2be6af757f1b2.tgz-meta/main.yaml
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
annotations: | ||
application.giantswarm.io/metadata: https://giantswarm.github.io/giantswarm-test-catalog/hello-world-2.4.0-68514ab8bb32083e5b83c67873f2be6af757f1b2.tgz-meta/main.yaml | ||
application.giantswarm.io/readme: https://giantswarm.github.io/giantswarm-test-catalog/hello-world-2.4.0-68514ab8bb32083e5b83c67873f2be6af757f1b2.tgz-meta/README.md | ||
application.giantswarm.io/team: honeybadger | ||
application.giantswarm.io/values-schema: https://giantswarm.github.io/giantswarm-test-catalog/hello-world-2.4.0-68514ab8bb32083e5b83c67873f2be6af757f1b2.tgz-meta/values.schema.json | ||
chartApiVersion: v2 | ||
chartFile: hello-world-2.4.0-68514ab8bb32083e5b83c67873f2be6af757f1b2.tgz | ||
dateCreated: '2024-11-13T19:46:29.043034Z' | ||
digest: 0ca49d6aad8048ca42b639eae07790c10ec58bac0217645c3dbfef3c71fac8d5 | ||
home: https://github.com/giantswarm/hello-world-app | ||
icon: https://s.giantswarm.io/app-icons/1/png/hello-world-app-light.png |
298 changes: 298 additions & 0 deletions
298
hello-world-2.4.0-68514ab8bb32083e5b83c67873f2be6af757f1b2.tgz-meta/values.schema.json
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 |
---|---|---|
@@ -0,0 +1,298 @@ | ||
{ | ||
"$schema": "http://json-schema.org/schema#", | ||
"type": "object", | ||
"properties": { | ||
"affinity": { | ||
"type": "object" | ||
}, | ||
"autoscaling": { | ||
"type": "object", | ||
"properties": { | ||
"enabled": { | ||
"type": "boolean" | ||
}, | ||
"maxReplicas": { | ||
"type": "integer" | ||
}, | ||
"minReplicas": { | ||
"type": "integer" | ||
}, | ||
"targetCPUUtilizationPercentage": { | ||
"type": "integer" | ||
}, | ||
"targetMemoryUtilizationPercentage": { | ||
"type": "integer" | ||
} | ||
} | ||
}, | ||
"fullnameOverride": { | ||
"type": "string" | ||
}, | ||
"global": { | ||
"type": "object", | ||
"properties": { | ||
"podSecurityStandards": { | ||
"type": "object", | ||
"properties": { | ||
"enforced": { | ||
"type": "boolean" | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"image": { | ||
"type": "object", | ||
"properties": { | ||
"pullPolicy": { | ||
"type": "string" | ||
}, | ||
"registry": { | ||
"type": "string" | ||
}, | ||
"repository": { | ||
"type": "string" | ||
}, | ||
"tag": { | ||
"type": "string" | ||
} | ||
} | ||
}, | ||
"imagePullSecrets": { | ||
"type": "array" | ||
}, | ||
"ingress": { | ||
"type": "object", | ||
"properties": { | ||
"annotations": { | ||
"type": "object" | ||
}, | ||
"className": { | ||
"type": "string" | ||
}, | ||
"enabled": { | ||
"type": "boolean" | ||
}, | ||
"hosts": { | ||
"type": "array", | ||
"items": { | ||
"type": "object", | ||
"properties": { | ||
"host": { | ||
"type": "string" | ||
}, | ||
"paths": { | ||
"type": "array", | ||
"items": { | ||
"type": "object", | ||
"properties": { | ||
"path": { | ||
"type": "string" | ||
}, | ||
"pathType": { | ||
"type": "string" | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"tls": { | ||
"type": "array", | ||
"items": { | ||
"type": "object", | ||
"properties": { | ||
"hosts": { | ||
"type": "array", | ||
"items": { | ||
"type": "string" | ||
} | ||
}, | ||
"secretName": { | ||
"type": "string" | ||
} | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"nameOverride": { | ||
"type": "string" | ||
}, | ||
"nodeSelector": { | ||
"type": "object" | ||
}, | ||
"podAnnotations": { | ||
"type": "object" | ||
}, | ||
"podDisruptionBudget": { | ||
"type": "object", | ||
"properties": { | ||
"enabled": { | ||
"type": "boolean" | ||
}, | ||
"maxUnavailable": { | ||
"type": "integer" | ||
}, | ||
"minAvailable": { | ||
"type": "integer" | ||
} | ||
} | ||
}, | ||
"podLabels": { | ||
"type": "object" | ||
}, | ||
"podSecurityContext": { | ||
"type": "object" | ||
}, | ||
"replicaCount": { | ||
"type": "integer" | ||
}, | ||
"resources": { | ||
"type": "object", | ||
"properties": { | ||
"limits": { | ||
"type": "object", | ||
"properties": { | ||
"cpu": { | ||
"type": "string" | ||
}, | ||
"memory": { | ||
"type": "string" | ||
} | ||
} | ||
}, | ||
"requests": { | ||
"type": "object", | ||
"properties": { | ||
"cpu": { | ||
"type": "string" | ||
}, | ||
"memory": { | ||
"type": "string" | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"securityContext": { | ||
"type": "object", | ||
"properties": { | ||
"allowPrivilegeEscalation": { | ||
"type": "boolean" | ||
}, | ||
"capabilities": { | ||
"type": "object", | ||
"properties": { | ||
"drop": { | ||
"type": "array", | ||
"items": { | ||
"type": "string" | ||
} | ||
} | ||
} | ||
}, | ||
"readOnlyRootFilesystem": { | ||
"type": "boolean" | ||
}, | ||
"runAsNonRoot": { | ||
"type": "boolean" | ||
}, | ||
"runAsUser": { | ||
"type": "integer" | ||
}, | ||
"seccompProfile": { | ||
"type": "object", | ||
"properties": { | ||
"type": { | ||
"type": "string" | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"service": { | ||
"type": "object", | ||
"properties": { | ||
"annotations": { | ||
"type": "object" | ||
}, | ||
"labels": { | ||
"type": "object" | ||
}, | ||
"port": { | ||
"type": "integer" | ||
}, | ||
"type": { | ||
"type": "string" | ||
} | ||
} | ||
}, | ||
"serviceAccount": { | ||
"type": "object", | ||
"properties": { | ||
"annotations": { | ||
"type": "object" | ||
}, | ||
"automount": { | ||
"type": "boolean" | ||
}, | ||
"create": { | ||
"type": "boolean" | ||
}, | ||
"name": { | ||
"type": "string" | ||
} | ||
} | ||
}, | ||
"serviceMonitor": { | ||
"type": "object", | ||
"properties": { | ||
"enabled": { | ||
"type": "boolean" | ||
}, | ||
"team": { | ||
"type": "string" | ||
}, | ||
"instance": { | ||
"type": "string" | ||
} | ||
} | ||
}, | ||
"strategy": { | ||
"type": "object", | ||
"properties": { | ||
"rollingUpdate": { | ||
"type": "object", | ||
"properties": { | ||
"maxSurge": { | ||
"type": "integer" | ||
}, | ||
"maxUnavailable": { | ||
"type": "integer" | ||
} | ||
} | ||
}, | ||
"type": { | ||
"type": "string" | ||
} | ||
} | ||
}, | ||
"tolerations": { | ||
"type": "array" | ||
}, | ||
"topologySpreadConstraints": { | ||
"type": "array", | ||
"items": { | ||
"type": "object" | ||
} | ||
}, | ||
"volumeMounts": { | ||
"type": "array" | ||
}, | ||
"volumes": { | ||
"type": "array" | ||
} | ||
} | ||
} |
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 |
---|---|---|
|
@@ -11514,6 +11514,35 @@ entries: | |
urls: | ||
- https://giantswarm.github.io/giantswarm-test-catalog/hello-world-2.4.0-8bcac332d43a4d117e38a09d3c8f7957979bc116.tgz | ||
version: 2.4.0-8bcac332d43a4d117e38a09d3c8f7957979bc116 | ||
- annotations: | ||
application.giantswarm.io/metadata: https://giantswarm.github.io/giantswarm-test-catalog/hello-world-2.4.0-68514ab8bb32083e5b83c67873f2be6af757f1b2.tgz-meta/main.yaml | ||
application.giantswarm.io/readme: https://giantswarm.github.io/giantswarm-test-catalog/hello-world-2.4.0-68514ab8bb32083e5b83c67873f2be6af757f1b2.tgz-meta/README.md | ||
application.giantswarm.io/team: honeybadger | ||
application.giantswarm.io/values-schema: https://giantswarm.github.io/giantswarm-test-catalog/hello-world-2.4.0-68514ab8bb32083e5b83c67873f2be6af757f1b2.tgz-meta/values.schema.json | ||
apiVersion: v2 | ||
appVersion: 0.3.0 | ||
created: "2024-11-13T19:46:35.556047269Z" | ||
description: A chart that deploys a basic hello world site and lets you test values | ||
merging of user values configmap and secrets. | ||
digest: 0ca49d6aad8048ca42b639eae07790c10ec58bac0217645c3dbfef3c71fac8d5 | ||
home: https://github.com/giantswarm/hello-world-app | ||
icon: https://s.giantswarm.io/app-icons/1/png/hello-world-app-light.png | ||
keywords: | ||
- hello-world | ||
- demo | ||
- webapp | ||
maintainers: | ||
- email: [email protected] | ||
name: Giant Swarm - Honeybadger | ||
url: https://www.giantswarm.io/about#honeybadger | ||
name: hello-world | ||
sources: | ||
- https://github.com/giantswarm/hello-world-app | ||
- https://github.com/giantswarm/helloworld | ||
type: application | ||
urls: | ||
- https://giantswarm.github.io/giantswarm-test-catalog/hello-world-2.4.0-68514ab8bb32083e5b83c67873f2be6af757f1b2.tgz | ||
version: 2.4.0-68514ab8bb32083e5b83c67873f2be6af757f1b2 | ||
- annotations: | ||
application.giantswarm.io/metadata: https://giantswarm.github.io/giantswarm-test-catalog/hello-world-2.4.0-62480b6f6d2f02e7982298f348739769128dc88a.tgz-meta/main.yaml | ||
application.giantswarm.io/readme: https://giantswarm.github.io/giantswarm-test-catalog/hello-world-2.4.0-62480b6f6d2f02e7982298f348739769128dc88a.tgz-meta/README.md | ||
|
@@ -29711,4 +29740,4 @@ entries: | |
urls: | ||
- https://giantswarm.github.io/giantswarm-test-catalog/zot-0.0.0-0b141fee021e1ccb5c4b25af6b43fe4fc866a0f1.tgz | ||
version: 0.0.0-0b141fee021e1ccb5c4b25af6b43fe4fc866a0f1 | ||
generated: "2024-11-13T19:46:05.377708258Z" | ||
generated: "2024-11-13T19:46:35.554400583Z" |