Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ keywords:
- confidential-computing
- confidential-containers
name: sandboxed-containers
version: 0.0.1
version: 0.2.0
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# sandboxed-containers

![Version: 0.0.1](https://img.shields.io/badge/Version-0.0.1-informational?style=flat-square)
![Version: 0.2.0](https://img.shields.io/badge/Version-0.2.0-informational?style=flat-square)

A Helm chart to provide an opinionated deployment of Sandboxed Containers in a validated pattern

Expand All @@ -23,8 +23,6 @@ Along side this is a small number of imperative jobs which can be seen in the co
| global.clusterPlatform | string | `""` | |
| global.secretStore.backend | string | `""` | |
| sandbox.sshKey | string | `"secret/data/global/sshKey"` | |
| secretStore.kind | string | `""` | |
| secretStore.name | string | `""` | |

----------------------------------------------
Autogenerated from chart metadata using [helm-docs v1.14.2](https://github.com/norwoodj/helm-docs/releases/v1.14.2)
4 changes: 2 additions & 2 deletions templates/ssh-key-eso.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{{- if and (ne .Values.global.secretStore.backend "none") (eq .Values.global.clusterPlatform "Azure") }}
{{- if and (dig "coco" "enableSSHDebug" false .Values.global) (ne (.Values.global.secretStore.backend | default "none") "none") (eq (.Values.global.clusterPlatform | default "") "Azure") }}
---
apiVersion: "external-secrets.io/v1beta1"
kind: ExternalSecret
Expand All @@ -19,4 +19,4 @@ spec:
dataFrom:
- extract:
key: {{ .Values.sandbox.sshKey }}
{{- end }}
{{- end }}
11 changes: 1 addition & 10 deletions values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,10 @@

# Global values used by this chart (overridden by values-global.yaml)
global:
clusterPlatform: "" # Cluster platform: "Azure" or "AWS"
clusterPlatform: ""
secretStore:
# Secret store backend, typically overridden by values-global.yaml
backend: ""

# Secret store configuration (overridden by values-global.yaml)
secretStore:
name: ""
kind: ""

# Sandbox-specific configuration
sandbox:
sshKey: secret/data/global/sshKey
# These variables today limit to one cluster
# revise using imperative framework to infer from cluster vars
# Strongly advised to override in values-global.yaml or values-{cluster-group}.yaml