mirror of
https://github.com/outbackdingo/cozystack.git
synced 2026-03-21 17:41:21 +00:00
<!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit ## Release Notes - **New Features** - Introduced a new script for managing Helm releases in Kubernetes, including installation and status monitoring. - Added a configuration file for tenant settings, enabling monitoring and SeaweedFS. - Enhanced PostgreSQL initialization script to manage database roles and privileges dynamically. - Added a new local pre-commit hook for version map checks. - **Bug Fixes** - Updated pre-commit hooks for consistent formatting. - **Tests** - Improved testing capabilities for applications in a Kubernetes environment with new Makefile targets. - Enhanced Docker image with tools for YAML and JSON processing. - Updated testing image to the latest version for improved performance. <!-- end of auto-generated comment: release notes by coderabbit.ai --> --------- Signed-off-by: Andrei Kvapil <kvapss@gmail.com> Co-authored-by: Andrei Kvapil <kvapss@gmail.com>
41 lines
875 B
YAML
Executable File
41 lines
875 B
YAML
Executable File
---
|
|
apiVersion: v1
|
|
kind: Namespace
|
|
metadata:
|
|
name: {{ .Release.Namespace }}
|
|
labels:
|
|
pod-security.kubernetes.io/enforce: privileged
|
|
---
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: cozystack-e2e-{{ .Release.Name }}
|
|
namespace: cozy-e2e-tests
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: cozystack-e2e-{{ .Release.Name }}
|
|
strategy:
|
|
type: Recreate
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: cozystack-e2e-{{ .Release.Name }}
|
|
spec:
|
|
automountServiceAccountToken: false
|
|
terminationGracePeriodSeconds: 1
|
|
containers:
|
|
- name: sandbox
|
|
image: "{{ .Values.e2e.image }}"
|
|
securityContext:
|
|
privileged: true
|
|
env:
|
|
- name: KUBECONFIG
|
|
value: /kubeconfig
|
|
- name: TALOSCONFIG
|
|
value: /talosconfig
|
|
command:
|
|
- sleep
|
|
- infinity
|