Signed-off-by: Andrei Kvapil <kvapss@gmail.com> <!-- This is an auto-generated comment: release notes by coderabbit.ai --> - **New Features** - Pull request workflows now support release pull requests by fetching artifacts from draft releases and running all jobs without label-based exclusions. - Test matrices are now generated dynamically, improving flexibility in end-to-end application testing. - Added a new end-to-end test verifying tenant creation with isolated mode enabled. - **Refactor** - Workflow steps and job dependencies have been streamlined for improved efficiency and maintainability. - Workflow names and concurrency group names have been updated for clarity. - Environment preparation and artifact handling have been unified into consolidated jobs. - Release-related workflow simplified to a single finalize job. - Makefile targets for asset copying and test execution have been reorganized for better modularity. - **Tests** - End-to-end application and cluster test scripts have been removed. - Removed collective end-to-end test target; individual app test targets remain. <!-- end of auto-generated comment: release notes by coderabbit.ai --> Signed-off-by: Andrei Kvapil <kvapss@gmail.com>
13 lines
387 B
YAML
13 lines
387 B
YAML
{{- $sourceSecret := lookup "v1" "Secret" "cozy-system" "patch-containerd" }}
|
|
{{- if $sourceSecret }}
|
|
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: {{ .Release.Name }}-patch-containerd
|
|
namespace: {{ .Release.Namespace }}
|
|
type: {{ $sourceSecret.type }}
|
|
data:
|
|
{{- range $key, $value := $sourceSecret.data }}
|
|
{{ printf "%s: %s" $key ($value | quote) | indent 2 }}
|
|
{{- end }}
|
|
{{- end }}
|