From 7bcd069bccca3e228c5ed80ffd817580a4073d65 Mon Sep 17 00:00:00 2001 From: Rafael Abdalla Date: Fri, 25 Oct 2024 21:00:44 +1100 Subject: [PATCH] Removed unnecessary files --- charts/humio-operator/clusterissuer.yaml | 14 ------ examples/humiocluster-s3-replication.yaml | 59 ----------------------- 2 files changed, 73 deletions(-) delete mode 100644 charts/humio-operator/clusterissuer.yaml delete mode 100644 examples/humiocluster-s3-replication.yaml diff --git a/charts/humio-operator/clusterissuer.yaml b/charts/humio-operator/clusterissuer.yaml deleted file mode 100644 index d94f207f..00000000 --- a/charts/humio-operator/clusterissuer.yaml +++ /dev/null @@ -1,14 +0,0 @@ -apiVersion: cert-manager.io/v1 -kind: ClusterIssuer -metadata: - name: letsencrypt-prod -spec: - acme: - server: https://acme-v02.api.letsencrypt.org/directory - email: $MY_EMAIL - privateKeySecretRef: - name: letsencrypt-prod - solvers: - - http01: - ingress: - class: nginx diff --git a/examples/humiocluster-s3-replication.yaml b/examples/humiocluster-s3-replication.yaml deleted file mode 100644 index fedca639..00000000 --- a/examples/humiocluster-s3-replication.yaml +++ /dev/null @@ -1,59 +0,0 @@ -apiVersion: core.humio.com/v1alpha1 -kind: HumioCluster -metadata: - name: example-humiocluster -spec: - nodeCount: 3 - license: - secretKeyRef: - name: example-humiocluster-license - key: data - image: "humio/humio-core:1.154.0" - targetReplicationFactor: 2 - storagePartitionsCount: 24 - digestPartitionsCount: 24 - affinity: - nodeAffinity: - requiredDuringSchedulingIgnoredDuringExecution: - nodeSelectorTerms: - - matchExpressions: - - key: humio_node_type - operator: In - values: - - core - - key: kubernetes.io/arch - operator: In - values: - - amd64 - - key: kubernetes.io/os - operator: In - values: - - linux - podAntiAffinity: - requiredDuringSchedulingIgnoredDuringExecution: - - labelSelector: - matchExpressions: - - key: app.kubernetes.io/name - operator: In - values: - - humio - topologyKey: kubernetes.io/hostname - dataVolumeSource: - hostPath: - path: "/mnt/disks/vol1" - type: "Directory" - environmentVariables: - - name: S3_STORAGE_BUCKET - value: "rafael-eks-cluster" - - name: S3_STORAGE_REGION - value: "us-west-2" - - name: S3_STORAGE_ENCRYPTION_KEY - value: "my-encryption-key" - - name: USING_EPHEMERAL_DISKS - value: "true" - - name: S3_STORAGE_PREFERRED_COPY_SOURCE - value: "true" - - name: BUCKET_STORAGE_MULTIPLE_ENDPOINTS - value: "true" - - name: S3_STORAGE_ENDPOINT_BASE - value: "https//logscale-replication.s3.us-east-1.amazonaws.com"