34 lines
826 B
YAML
34 lines
826 B
YAML
|
apiVersion: argoproj.io/v1alpha1
|
||
|
kind: AppProject
|
||
|
metadata:
|
||
|
name: badhouseplants
|
||
|
namespace: argo-system
|
||
|
finalizers:
|
||
|
- resources-finalizer.argocd.argoproj.io
|
||
|
spec:
|
||
|
description: BadHouseplants Blog
|
||
|
sourceRepos:
|
||
|
- '*'
|
||
|
|
||
|
destinations:
|
||
|
- namespace: badhouseplants-*
|
||
|
server: https://kubernetes.default.svc
|
||
|
name: in-cluster
|
||
|
|
||
|
# Deny all cluster-scoped resources from being created, except for Namespace
|
||
|
clusterResourceWhitelist:
|
||
|
- group: ''
|
||
|
kind: Namespace
|
||
|
|
||
|
# Allow all namespaced-scoped resources to be created, except for ResourceQuota, LimitRange, NetworkPolicy
|
||
|
namespaceResourceBlacklist:
|
||
|
- group: ''
|
||
|
kind: ResourceQuota
|
||
|
- group: ''
|
||
|
kind: LimitRange
|
||
|
- group: ''
|
||
|
kind: NetworkPolicy
|
||
|
|
||
|
# Enables namespace orphaned resource monitoring.
|
||
|
orphanedResources:
|
||
|
warn: false
|