diff --git a/README.md b/README.md index d93cf66..c85e9e0 100644 --- a/README.md +++ b/README.md @@ -31,6 +31,8 @@ helm upgrade -i mysql mysql/ --values local-values/mysql/crm1.yaml -n crm1 cd /bitnami/mysql/ +CREATE DATABASE nacos DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci; + mysql -uroot -pgkxl650 zd_rescue < ./zd_rescue.sql ``` @@ -41,6 +43,8 @@ cd rabbitmq && helm dependency update && cd .. helm upgrade -i rabbitmq rabbitmq/ --set auth.password="gkxl650" --set auth.erlangCookie='gkxl650' --values local-values/rabbitmq/crm1.yaml -n crm1 + helm upgrade -i rabbitmq rabbitmq/ --set auth.password="gkxl650" --set auth.erlangCookie='gkxl650' --values local-values/rabbitmq/crm1.yaml -n crm-review + ``` diff --git a/local-values/canal/review.yaml b/local-values/canal/review.yaml new file mode 100644 index 0000000..0d882a0 --- /dev/null +++ b/local-values/canal/review.yaml @@ -0,0 +1,116 @@ +# Default values for canal-server. +# This is a YAML-formatted file. +# Declare variables to be passed into your templates. + +replicaCount: 1 + +image: + repository: canal/canal-server + pullPolicy: IfNotPresent + # Overrides the image tag whose default is the chart appVersion. + tag: "v1.1.5" + +imagePullSecrets: [] +nameOverride: "" +fullnameOverride: "" + +serviceAccount: + # Specifies whether a service account should be created + create: false + # Annotations to add to the service account + annotations: {} + # The name of the service account to use. + # If not set and create is true, a name is generated using the fullname template + name: "" + +podAnnotations: {} + +podSecurityContext: {} + # fsGroup: 2000 + +securityContext: {} + # capabilities: + # drop: + # - ALL + # readOnlyRootFilesystem: true + # runAsNonRoot: true + # runAsUser: 1000 + +service: + type: ClusterIP + port: 11110 + +ingress: + enabled: false + className: "" + annotations: {} + # kubernetes.io/ingress.class: nginx + # kubernetes.io/tls-acme: "true" + hosts: + - host: chart-example.local + paths: + - path: / + pathType: ImplementationSpecific + tls: [] + # - secretName: chart-example-tls + # hosts: + # - chart-example.local +extraEnvVars: + - name: "canal.instance.master.address" + value: "192.168.10.10:3306" + - name: "canal.instance.dbUsername" + value: "repl" + - name: "canal.instance.dbPassword" + value: "nczl@sino_db" + - name: "canal.instance.gtidon" + value: "false" + - name: "canal.instance.connectionCharset" + value: "UTF-8" + - name: "canal.instance.tsdb.enable" + value: "true" + - name: "canal.instance.enableDruid" + value: "false" + - name: "canal.instance.filter.regex" + value: "zd_rescue\\.user_order_his.*,zd_rescue\\.task_order_his.*,zd_rescue\\.task_order_cost_his.*,zd_rescue.supplier_account_record,zd_rescue.customer_order_account" + - name: "canal.mq.topic" + value: "canal_example" + - name: "canal.serverMode" + value: "rabbitMQ" + - name: "canal.instance.parser.parallel" + value: "true" + - name: "rabbitmq.host" + value: "rabbitmq:5672" + - name: "rabbitmq.virtual.host" + value: "canal" + - name: "rabbitmq.exchange" + value: "canal_exchange" + - name: "rabbitmq.username" + value: "root" + - name: "rabbitmq.password" + value: "gkxl650" + + +resources: + # We usually recommend not to specify default resources and to leave this as a conscious + # choice for the user. This also increases chances charts run on environments with little + # resources, such as Minikube. If you do want to specify resources, uncomment the following + # lines, adjust them as necessary, and remove the curly braces after 'resources:'. + # limits: + # cpu: 100m + # memory: 128Mi + # requests: + # cpu: 100m + # memory: 128Mi + +autoscaling: + enabled: false + minReplicas: 1 + maxReplicas: 100 + targetCPUUtilizationPercentage: 80 + # targetMemoryUtilizationPercentage: 80 + +nodeSelector: {} + +tolerations: [] + +affinity: {}