From 96d1749b63842d8e471066b392ad5e3be6a8a3b9 Mon Sep 17 00:00:00 2001 From: ycz008 Date: Thu, 16 Nov 2023 12:03:00 +0800 Subject: [PATCH] remove qa akhq --- qa-upgrade/kafka/akhq.yaml | 103 ------------------------------------- 1 file changed, 103 deletions(-) delete mode 100644 qa-upgrade/kafka/akhq.yaml diff --git a/qa-upgrade/kafka/akhq.yaml b/qa-upgrade/kafka/akhq.yaml deleted file mode 100644 index a4f3b13..0000000 --- a/qa-upgrade/kafka/akhq.yaml +++ /dev/null @@ -1,103 +0,0 @@ ---- -apiVersion: v1 -kind: ConfigMap -metadata: - name: akhq-config -data: - application.yml: | - micronaut: - security: - enabled: true - token: - jwt: - signatures: - secret: - generator: - secret: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJkYXRhIjpbeyJ0b29sdHQiOiJodHRwczovL3Rvb2x0dC5jb20ifV0sImlhdCI6MTY4NTY4OTU1MiwiZXhwIjoyNTM3NjI1NTk5LCJhdWQiOiIiLCJpc3MiOiJzbWFsbGtvdWRhaSIsInN1YiI6IiJ9.mKw9nKRhQimdaNtMWLHT9TqIn2-iIcZR4txgy8z07xQ - akhq: - connections: - kafka-cluster: - properties: - bootstrap.servers: "kafka-0-internal:9092,kafka-1-internal:9092,kafka-2-internal:9092" - schema-registry: - url: "http://schemaregistry-0-internal:8081,http://schemaregistry-1-internal:8081,http://schemaregistry-2-internal:8081" - type: "confluent" - security: - default-group: no-roles - basic-auth: - - username: admin - password: "$2a$10$zBr9YyaCto68TJ.aYsP8/eQXHm5MqJUULRm0OpzEOowhmG2Pjv2ry" - passwordHash: BCRYPT - groups: - - admin - ---- -apiVersion: apps/v1 -kind: Deployment -metadata: - name: akhq -spec: - replicas: 1 - selector: - matchLabels: - app: akhq - template: - metadata: - labels: - app: akhq - spec: - containers: - - name: akhq - image: tchiotludo/akhq - env: - - name: MICRONAUT_CONFIG_FILES - value: /app/application.yml - ports: - - name: http - containerPort: 8080 - protocol: TCP - - name: management - containerPort: 28081 - protocol: TCP - volumeMounts: - - name: config - mountPath: /app/application.yml - subPath: application.yml - livenessProbe: - httpGet: - path: /health - port: management - initialDelaySeconds: 5 - periodSeconds: 10 - timeoutSeconds: 5 - successThreshold: 1 - failureThreshold: 3 - readinessProbe: - httpGet: - path: /health - port: management - initialDelaySeconds: 5 - periodSeconds: 10 - timeoutSeconds: 5 - successThreshold: 1 - failureThreshold: 3 - resources: {} - volumes: - - name: config - configMap: - name: akhq-config ---- -apiVersion: v1 -kind: Service -metadata: - name: akhq -spec: - type: NodePort - ports: - - name: http - protocol: TCP - port: 8080 - targetPort: http - # nodePort: 30024 - selector: - app: akhq