I dont think I need raw
This commit is contained in:
parent
89daa3a89a
commit
da280d229b
|
@ -62,35 +62,86 @@ spec:
|
|||
interval: 1m
|
||||
---
|
||||
# ================= Release for incubator/raw =================
|
||||
apiVersion: helm.toolkit.fluxcd.io/v2beta1
|
||||
kind: HelmRelease
|
||||
metadata:
|
||||
name: raw
|
||||
namespace: longhorn-system
|
||||
spec:
|
||||
interval: 5m
|
||||
dependsOn:
|
||||
- name: kyverno
|
||||
namespace: longhorn-system
|
||||
chart:
|
||||
spec:
|
||||
chart: raw
|
||||
version: '2.0.0'
|
||||
sourceRef:
|
||||
kind: HelmRepository
|
||||
name: raw-charts
|
||||
namespace: flux-system
|
||||
interval: 1m
|
||||
values:
|
||||
resources:
|
||||
- apiVersion: v1
|
||||
#apiVersion: helm.toolkit.fluxcd.io/v2beta1
|
||||
#kind: HelmRelease
|
||||
#metadata:
|
||||
# name: raw
|
||||
# namespace: longhorn-system
|
||||
#spec:
|
||||
# interval: 5m
|
||||
# dependsOn:
|
||||
# - name: kyverno
|
||||
# namespace: longhorn-system
|
||||
# chart:
|
||||
# spec:
|
||||
# chart: raw
|
||||
# version: '2.0.0'
|
||||
# sourceRef:
|
||||
# kind: HelmRepository
|
||||
# name: raw-charts
|
||||
# namespace: flux-system
|
||||
# interval: 1m
|
||||
# values:
|
||||
# resources:
|
||||
# - apiVersion: v1
|
||||
# kind: ConfigMap
|
||||
# metadata:
|
||||
# name: longhorn-custom-path
|
||||
# namespace: longhorn-system
|
||||
# data:
|
||||
# PATH: /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/run/wrappers/bin:/nix/var/nix/profiles/default/bin:/run/current-system/sw/bin
|
||||
# - apiVersion: kyverno.io/v1
|
||||
# kind: ClusterPolicy
|
||||
# metadata:
|
||||
# name: add-host-path-to-longhorn
|
||||
# annotations:
|
||||
# policies.kyverno.io/title: Add Environment Variables from ConfigMap
|
||||
# policies.kyverno.io/subject: Pod
|
||||
# policies.kyverno.io/category: Other
|
||||
# policies.kyverno.io/description: >-
|
||||
# Longhorn invokes executables on the host system, and needs
|
||||
# to be aware of the host systems PATH. This modifies all
|
||||
# deployments such that the PATH is explicitly set to support
|
||||
# NixOS based systems.
|
||||
# spec:
|
||||
# rules:
|
||||
# - name: add-env-vars
|
||||
# match:
|
||||
# resources:
|
||||
# kinds:
|
||||
# - Pod
|
||||
# namespaces:
|
||||
# - longhorn-system
|
||||
# mutate:
|
||||
# patchStrategicMerge:
|
||||
# spec:
|
||||
# initContainers:
|
||||
# - (name): "*"
|
||||
# envFrom:
|
||||
# - configMapRef:
|
||||
# name: longhorn-custom-path
|
||||
# containers:
|
||||
# - (name): "*"
|
||||
# envFrom:
|
||||
# - configMapRef:
|
||||
# name: longhorn-custom-path
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: ConfigMap
|
||||
metadata:
|
||||
name: longhorn-custom-path
|
||||
namespace: longhorn-system
|
||||
data:
|
||||
PATH: /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/run/wrappers/bin:/nix/var/nix/profiles/default/bin:/run/current-system/sw/bin
|
||||
- apiVersion: kyverno.io/v1
|
||||
---
|
||||
apiVersion: kyverno.io/v1
|
||||
kind: ClusterPolicy
|
||||
metadata:
|
||||
name: add-host-path-to-longhorn
|
||||
|
|
Loading…
Reference in New Issue