-
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.
Merge pull request #30 from foomo/squadron-charts
feat: update
- Loading branch information
Showing
30 changed files
with
1,250 additions
and
501 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
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
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,25 @@ | ||
{{- range $key, $value := .Values.volumes }} | ||
apiVersion: v1 | ||
kind: PersistentVolumeClaim | ||
metadata: | ||
name: {{ $key }} | ||
labels: {{- include "namespace.labels" $ | nindent 4 }} | ||
{{- with $value.annotations }} | ||
annotations: {{ toYaml . | nindent 4 }} | ||
{{-end }} | ||
namespace: {{ include "namespace.namespace" $ }} | ||
spec: | ||
{{- if $value.name }} | ||
volumeName: {{ $value.name }} | ||
{{- end }} | ||
accessModes: [ {{ default $value.accessMode "ReadWriteOnce" }} ] | ||
{{- with $value.storageClass }} | ||
storageClassName: {{ . }} | ||
{{- end }} | ||
{{- with $value.size }} | ||
resources: | ||
requests: | ||
storage: {{ . }} | ||
{{- end }} | ||
--- | ||
{{- end }} |
File renamed without changes.
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 |
---|---|---|
@@ -1,32 +1,127 @@ | ||
{ | ||
"$schema": "http://json-schema.org/schema#", | ||
"type": "object", | ||
"properties": { | ||
"fullnameOverride": { | ||
"type": "string" | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"additionalProperties": false, | ||
"properties": { | ||
"dockerSecrets": { | ||
"additionalProperties": { | ||
"properties": { | ||
"annotations": { | ||
"additionalProperties": true, | ||
"type": "object" | ||
}, | ||
"data": { | ||
"additionalProperties": true, | ||
"type": "object" | ||
} | ||
}, | ||
"nameOverride": { | ||
"type": "string" | ||
"type": "object" | ||
}, | ||
"description": "tlsSecrets:\n my-domain.com:\n annotations:\n replicator.v1.mittwald.de/replicate-to: \".*\"\n data:\n tls.crt: ''\n tls.key: ''\nDocker config json secrets", | ||
"required": [], | ||
"title": "dockerSecrets", | ||
"type": "object" | ||
}, | ||
"fullnameOverride": { | ||
"default": "", | ||
"description": "Overrides the chart's computed fullname", | ||
"required": [], | ||
"title": "fullnameOverride", | ||
"type": "string" | ||
}, | ||
"global": { | ||
"description": "Global values are values that can be accessed from any chart or subchart by exactly the same name.", | ||
"required": [], | ||
"title": "global", | ||
"type": "object" | ||
}, | ||
"nameOverride": { | ||
"default": "", | ||
"description": "Overrides the chart's name", | ||
"required": [], | ||
"title": "nameOverride", | ||
"type": "string" | ||
}, | ||
"namespaceOverride": { | ||
"default": "", | ||
"description": "The name of the Namespace to deploy", | ||
"required": [], | ||
"title": "namespaceOverride", | ||
"type": "string" | ||
}, | ||
"secrets": { | ||
"additionalProperties": { | ||
"properties": { | ||
"annotations": { | ||
"additionalProperties": true, | ||
"type": "object" | ||
}, | ||
"data": { | ||
"additionalProperties": true, | ||
"type": "object" | ||
}, | ||
"stringData": { | ||
"additionalProperties": true, | ||
"type": "object" | ||
} | ||
}, | ||
"namespaceOverride": { | ||
"type": "string" | ||
"type": "object" | ||
}, | ||
"description": "Opaque secrets", | ||
"required": [], | ||
"title": "secrets", | ||
"type": "object" | ||
}, | ||
"serviceAccounts": { | ||
"additionalProperties": { | ||
"properties": { | ||
"annotations": { | ||
"additionalProperties": true, | ||
"type": "object" | ||
} | ||
}, | ||
"secrets": { | ||
"type": "object", | ||
"properties": { | ||
"dockerConfigs": { | ||
"type": "object" | ||
}, | ||
"opaque": { | ||
"type": "object" | ||
}, | ||
"tls": { | ||
"type": "object" | ||
} | ||
} | ||
"type": "object" | ||
}, | ||
"description": "Service accounts settings", | ||
"required": [], | ||
"title": "serviceAccounts", | ||
"type": "object" | ||
}, | ||
"tlsSecrets": { | ||
"additionalProperties": { | ||
"properties": { | ||
"annotations": { | ||
"additionalProperties": true, | ||
"type": "object" | ||
}, | ||
"data": { | ||
"additionalProperties": true, | ||
"type": "object" | ||
} | ||
}, | ||
"serviceAccounts": { | ||
"type": "object" | ||
}, | ||
"description": "secrets:\n my-secret:\n annotations:\n replicator.v1.mittwald.de/replicate-to: \".*\"\n data: {}\nTLS secrets", | ||
"required": [], | ||
"title": "tlsSecrets", | ||
"type": "object" | ||
}, | ||
"volumes": { | ||
"additionalProperties": { | ||
"additionalProperties": true, | ||
"properties": { | ||
"annotations": { | ||
"additionalProperties": true, | ||
"type": "object" | ||
} | ||
} | ||
}, | ||
"type": "object" | ||
}, | ||
"description": "Service accounts settings", | ||
"required": [], | ||
"title": "volumes", | ||
"type": "object" | ||
} | ||
} | ||
}, | ||
"required": [], | ||
"type": "object" | ||
} |
Oops, something went wrong.