Skip to content

Commit

Permalink
add hello-world-2.6.0.tgz
Browse files Browse the repository at this point in the history
hello-world-2.6.0.tgz-meta/README.md
hello-world-2.6.0.tgz-meta/main.yaml
hello-world-2.6.0.tgz-meta/values.schema.json
  • Loading branch information
catalogbot committed Dec 20, 2024
1 parent 7a3a99b commit bc4ff57
Show file tree
Hide file tree
Showing 5 changed files with 361 additions and 1 deletion.
Binary file added hello-world-2.6.0.tgz
Binary file not shown.
9 changes: 9 additions & 0 deletions hello-world-2.6.0.tgz-meta/README.md
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 hello-world-2.6.0.tgz-meta/main.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
annotations:
application.giantswarm.io/metadata: https://giantswarm.github.io/giantswarm-catalog/hello-world-2.6.0.tgz-meta/main.yaml
application.giantswarm.io/readme: https://giantswarm.github.io/giantswarm-catalog/hello-world-2.6.0.tgz-meta/README.md
application.giantswarm.io/team: honeybadger
application.giantswarm.io/values-schema: https://giantswarm.github.io/giantswarm-catalog/hello-world-2.6.0.tgz-meta/values.schema.json
chartApiVersion: v2
chartFile: hello-world-2.6.0.tgz
dateCreated: '2024-12-20T09:16:46.898434Z'
digest: 9c542f271f169d3ae96ab571eb282865cfec498d29b97de033274b1a1c6ba73b
home: https://github.com/giantswarm/hello-world-app
icon: https://s.giantswarm.io/app-icons/1/png/hello-world-app-light.png
311 changes: 311 additions & 0 deletions hello-world-2.6.0.tgz-meta/values.schema.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,311 @@
{
"$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"
},
"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"
}
}
}
}
}
},
"livenessProbe": {
"type": "object",
"properties": {
"httpGet": {
"type": "object",
"properties": {
"path": {
"type": "string"
},
"port": {
"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"
},
"readinessProbe": {
"type": "object",
"properties": {
"httpGet": {
"type": "object",
"properties": {
"path": {
"type": "string"
},
"port": {
"type": "string"
}
}
}
}
},
"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"
}
}
},
"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"
}
}
}
31 changes: 30 additions & 1 deletion index.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14682,6 +14682,35 @@ entries:
- https://giantswarm.github.io/giantswarm-catalog/grafana-agent-0.2.0.tgz
version: 0.2.0
hello-world:
- annotations:
application.giantswarm.io/metadata: https://giantswarm.github.io/giantswarm-catalog/hello-world-2.6.0.tgz-meta/main.yaml
application.giantswarm.io/readme: https://giantswarm.github.io/giantswarm-catalog/hello-world-2.6.0.tgz-meta/README.md
application.giantswarm.io/team: honeybadger
application.giantswarm.io/values-schema: https://giantswarm.github.io/giantswarm-catalog/hello-world-2.6.0.tgz-meta/values.schema.json
apiVersion: v2
appVersion: 0.3.0
created: "2024-12-20T09:16:53.884316954Z"
description: A chart that deploys a basic hello world site and lets you test values
merging of user values configmap and secrets.
digest: 9c542f271f169d3ae96ab571eb282865cfec498d29b97de033274b1a1c6ba73b
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-catalog/hello-world-2.6.0.tgz
version: 2.6.0
- annotations:
application.giantswarm.io/metadata: https://giantswarm.github.io/giantswarm-catalog/hello-world-2.5.0.tgz-meta/main.yaml
application.giantswarm.io/readme: https://giantswarm.github.io/giantswarm-catalog/hello-world-2.5.0.tgz-meta/README.md
Expand Down Expand Up @@ -33952,4 +33981,4 @@ entries:
urls:
- https://giantswarm.github.io/giantswarm-catalog/zot-0.1.1.tgz
version: 0.1.1
generated: "2024-12-11T13:04:43.865267695Z"
generated: "2024-12-20T09:16:53.883257809Z"

0 comments on commit bc4ff57

Please sign in to comment.