canal
This commit is contained in:
@ -115,4 +115,12 @@ helm upgrade -i xxl-job-admin xxl-job-admin/ --values local-values/xxl-job/crm1
|
||||
|
||||
```
|
||||
|
||||
## canal
|
||||
https://hub.fastgit.org/nacos-group/nacos-k8s.git
|
||||
|
||||
```
|
||||
helm upgrade -i canal-server canal-server/ --values local-values/canal/crm1.yaml -n crm1
|
||||
|
||||
```
|
||||
|
||||
helm upgrade -i --namespace=crm1 new-sino-crm1 doc/helm/new-sino --values doc/helm/new-sino/values.yaml
|
116
local-values/canal/crm1.yaml
Normal file
116
local-values/canal/crm1.yaml
Normal file
@ -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: 9100
|
||||
|
||||
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: mysql:3306
|
||||
- name: canal.instance.dbUsername
|
||||
value: root
|
||||
- name: canal.instance.dbPassword
|
||||
value: gkxl650
|
||||
- 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: {}
|
Reference in New Issue
Block a user