-
-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Bump common to 0.1.13 - Simplify values.yaml - Change tag to version-154c581 in order to reduce the number of chart updates. Signed-off-by: nιcнolaѕ wιlde <[email protected]>
- Loading branch information
1 parent
773d994
commit 1250e8c
Showing
4 changed files
with
244 additions
and
40 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 |
---|---|---|
@@ -1,15 +1,15 @@ | ||
--- | ||
apiVersion: v2 | ||
appVersion: "154c581" | ||
version: 0.1.1 | ||
version: 1.0.0 | ||
name: golinks | ||
description: A web app that allows you to create smart bookmarks, commands and aliases by pointing your web browser's default search engine at a running instance. | ||
type: application | ||
home: "https://github.com/nicholaswilde/helm-charts/tree/main/charts/golinks" | ||
icon: "" | ||
dependencies: | ||
- name: common | ||
version: ~0.1.8 | ||
version: ~0.1.13 | ||
repository: https://nicholaswilde.github.io/helm-charts/ | ||
keywords: | ||
- search | ||
|
@@ -25,7 +25,14 @@ maintainers: | |
email: [email protected] | ||
annotations: | ||
artifacthub.io/changes: | | ||
- Bumped tag to 154c581-ls2 | ||
- kind: added | ||
description: values.schema.json | ||
- kind: changed | ||
description: Bump common to 0.1.13 | ||
- kind: changed | ||
description: Simplify values.yaml | ||
- kind: changed | ||
description: Change tag to version-154c581 in order to reduce the number of chart updates. | ||
artifacthub.io/images: | | ||
- name: golinks | ||
image: ghcr.io/nicholaswilde/golinks:154c581-ls2 | ||
image: ghcr.io/nicholaswilde/golinks:version-154c581 |
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
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,218 @@ | ||
{ | ||
"$schema": "http://json-schema.org/schema#", | ||
"required": [ | ||
"image", | ||
"service", | ||
"ingress" | ||
], | ||
"title": "golinks Chart JSON Schema", | ||
"type": "object", | ||
"properties": { | ||
"image": { | ||
"$id": "#/properties/image", | ||
"type": "object", | ||
"title": "Chart image object", | ||
"description": "An explanation about the purpose of this instance.", | ||
"required": [ | ||
"repository", | ||
"pullPolicy", | ||
"tag" | ||
], | ||
"properties": { | ||
"repository": { | ||
"$id": "#/properties/image/properties/repository", | ||
"default": "ghcr.io/nicholaswilde/golinks", | ||
"description": "An explanation about the purpose of this instance.", | ||
"title": "Image repository", | ||
"type": "string" | ||
}, | ||
"pullPolicy": { | ||
"$id": "#/properties/image/properties/pullPolicy", | ||
"default": "IfNotPresent", | ||
"description": "An explanation about the purpose of this instance.", | ||
"title": "Image pull policy", | ||
"type": "string" | ||
}, | ||
"tag": { | ||
"$id": "#/properties/image/properties/tag", | ||
"default": "version-154c581", | ||
"description": "An explanation about the purpose of this instance.", | ||
"title": "Image tag", | ||
"type": "string" | ||
} | ||
} | ||
}, | ||
"secret": { | ||
"$id": "#/properties/secret", | ||
"default": {}, | ||
"description": "An explanation about the purpose of this instance.", | ||
"required": [], | ||
"title": "Chart secret", | ||
"type": "object" | ||
}, | ||
"env": { | ||
"$id": "#/properties/env", | ||
"default": {}, | ||
"description": "An explanation about the purpose of this instance.", | ||
"required": [], | ||
"title": "Environmental variables", | ||
"type": "object" | ||
}, | ||
"service": { | ||
"$id": "#/properties/service", | ||
"description": "An explanation about the purpose of this instance.", | ||
"required": [ | ||
"port" | ||
], | ||
"title": "Service object", | ||
"type": "object", | ||
"properties": { | ||
"port": { | ||
"$id": "#/properties/service/properties/port", | ||
"description": "An explanation about the purpose of this instance.", | ||
"required": [ | ||
"port" | ||
], | ||
"title": "Service port object", | ||
"type": "object", | ||
"properties": { | ||
"port": { | ||
"$id": "#/properties/service/properties/port/properties/port", | ||
"default": 8000, | ||
"description": "An explanation about the purpose of this instance.", | ||
"title": "Service port number", | ||
"type": "integer" | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"ingress": { | ||
"$id": "#/properties/ingress", | ||
"description": "An explanation about the purpose of this instance.", | ||
"required": [ | ||
"enabled" | ||
], | ||
"title": "Ingress object", | ||
"type": "object", | ||
"properties": { | ||
"enabled": { | ||
"$id": "#/properties/ingress/properties/enabled", | ||
"default": false, | ||
"description": "An explanation about the purpose of this instance.", | ||
"title": "Enable ingress", | ||
"type": "boolean" | ||
} | ||
} | ||
}, | ||
"persistence": { | ||
"$id": "#/properties/persistence", | ||
"description": "An explanation about the purpose of this instance.", | ||
"required": [], | ||
"title": "Persistence object", | ||
"type": "object", | ||
"properties": { | ||
"app": { | ||
"$id": "#/properties/persistence/properties/app", | ||
"type": "object", | ||
"title": "app PVC", | ||
"description": "An explanation about the purpose of this instance.", | ||
"required": [ | ||
"enabled", | ||
"emptyDir", | ||
"mountPath", | ||
"accessMode", | ||
"size" | ||
], | ||
"properties": { | ||
"enabled": { | ||
"$id": "#/properties/persistence/properties/app/properties/enabled", | ||
"type": "boolean", | ||
"title": "Enable app PVC", | ||
"description": "An explanation about the purpose of this instance.", | ||
"default": false | ||
}, | ||
"emptyDir": { | ||
"$id": "#/properties/persistence/properties/app/properties/emptyDir", | ||
"type": "boolean", | ||
"title": "app emptyDir", | ||
"description": "An explanation about the purpose of this instance.", | ||
"default": false | ||
}, | ||
"mountPath": { | ||
"$id": "#/properties/persistence/properties/app/properties/mountPath", | ||
"default": "/app", | ||
"description": "An explanation about the purpose of this instance.", | ||
"title": "app mount path", | ||
"type": "string" | ||
}, | ||
"accessMode": { | ||
"$id": "#/properties/persistence/properties/app/properties/accessMode", | ||
"default": "ReadWriteOnce", | ||
"description": "An explanation about the purpose of this instance.", | ||
"title": "app access mode", | ||
"type": "string" | ||
}, | ||
"size": { | ||
"$id": "#/properties/persistence/properties/app/properties/size", | ||
"default": "1Gi", | ||
"description": "An explanation about the purpose of this instance.", | ||
"title": "app size", | ||
"type": "string" | ||
} | ||
} | ||
}, | ||
"data": { | ||
"$id": "#/properties/persistence/properties/data", | ||
"type": "object", | ||
"title": "data PVC", | ||
"description": "An explanation about the purpose of this instance.", | ||
"required": [ | ||
"enabled", | ||
"emptyDir", | ||
"mountPath", | ||
"accessMode", | ||
"size" | ||
], | ||
"properties": { | ||
"enabled": { | ||
"$id": "#/properties/persistence/properties/data/properties/enabled", | ||
"type": "boolean", | ||
"title": "Enable data PVC", | ||
"description": "An explanation about the purpose of this instance.", | ||
"default": false | ||
}, | ||
"emptyDir": { | ||
"$id": "#/properties/persistence/properties/data/properties/emptyDir", | ||
"type": "boolean", | ||
"title": "data emptyDir", | ||
"description": "An explanation about the purpose of this instance.", | ||
"default": false | ||
}, | ||
"mountPath": { | ||
"$id": "#/properties/persistence/properties/data/properties/mountPath", | ||
"default": "/data", | ||
"description": "An explanation about the purpose of this instance.", | ||
"title": "data mount path", | ||
"type": "string" | ||
}, | ||
"accessMode": { | ||
"$id": "#/properties/persistence/properties/data/properties/accessMode", | ||
"default": "ReadWriteOnce", | ||
"description": "An explanation about the purpose of this instance.", | ||
"title": "data access mode", | ||
"type": "string" | ||
}, | ||
"size": { | ||
"$id": "#/properties/persistence/properties/data/properties/size", | ||
"default": "1Gi", | ||
"description": "An explanation about the purpose of this instance.", | ||
"title": "data size", | ||
"type": "string" | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |
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