Squashed 'cluster-config/' content from commit 654f2390
git-subtree-dir: cluster-config git-subtree-split: 654f23903bd1f9a27a4810bd289d165b6cfdbb0c
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
namespace: openshift-pipelines
|
||||
|
||||
resources:
|
||||
- pvc.yaml
|
||||
- tekton-results-db-secret.yaml
|
||||
- tekton-results-tls-secret.yaml
|
||||
- tektonresults.yaml
|
||||
10
components/pipelines-operator/overlays/results/pvc.yaml
Normal file
10
components/pipelines-operator/overlays/results/pvc.yaml
Normal file
@@ -0,0 +1,10 @@
|
||||
apiVersion: v1
|
||||
kind: PersistentVolumeClaim
|
||||
metadata:
|
||||
name: tekton-logs
|
||||
spec:
|
||||
accessModes:
|
||||
- ReadWriteOnce
|
||||
resources:
|
||||
requests:
|
||||
storage: 5Gi
|
||||
@@ -0,0 +1,18 @@
|
||||
apiVersion: external-secrets.io/v1beta1
|
||||
kind: ExternalSecret
|
||||
metadata:
|
||||
annotations:
|
||||
argocd.argoproj.io/sync-wave: "0"
|
||||
name: tekton-results-postgres
|
||||
namespace: openshift-pipelines
|
||||
spec:
|
||||
refreshInterval: 1h
|
||||
secretStoreRef:
|
||||
kind: ClusterSecretStore
|
||||
name: doppler-cluster
|
||||
target:
|
||||
name: tekton-results-postgres
|
||||
creationPolicy: Owner
|
||||
dataFrom:
|
||||
- extract:
|
||||
key: TEKTON_RESULTS_DB
|
||||
@@ -0,0 +1,20 @@
|
||||
apiVersion: external-secrets.io/v1beta1
|
||||
kind: ExternalSecret
|
||||
metadata:
|
||||
annotations:
|
||||
argocd.argoproj.io/sync-wave: "0"
|
||||
name: tekton-results-tls
|
||||
namespace: openshift-pipelines
|
||||
spec:
|
||||
refreshInterval: 1h
|
||||
secretStoreRef:
|
||||
kind: ClusterSecretStore
|
||||
name: doppler-cluster
|
||||
target:
|
||||
name: tekton-results-tls
|
||||
creationPolicy: Owner
|
||||
template:
|
||||
type: kubernetes.io/tls
|
||||
dataFrom:
|
||||
- extract:
|
||||
key: TEKTON_RESULTS_TLS
|
||||
@@ -0,0 +1,19 @@
|
||||
apiVersion: operator.tekton.dev/v1alpha1
|
||||
kind: TektonResult
|
||||
metadata:
|
||||
name: result
|
||||
spec:
|
||||
targetNamespace: openshift-pipelines
|
||||
logs_api: true
|
||||
log_level: info
|
||||
db_port: 5432
|
||||
db_host: tekton-results-postgres-service.openshift-pipelines.svc.cluster.local
|
||||
logs_path: /logs
|
||||
logs_type: File
|
||||
logs_buffer_size: 32768
|
||||
auth_disable: true
|
||||
tls_hostname_override: tekton-results-api-service.openshift-pipelines.svc.cluster.local
|
||||
db_enable_auto_migration: true
|
||||
server_port: 8080
|
||||
prometheus_port: 9090
|
||||
logging_pvc_name: tekton-logs
|
||||
Reference in New Issue
Block a user