github.com/polarismesh/polaris@v1.17.8/release/cluster/helm/values.yaml (about)

     1  # Default values for polaris.
     2  # This is a YAML-formatted file.
     3  # Declare variables to be passed into your templates.
     4  
     5  global:
     6    # mode: standalone
     7    mode: cluster
     8  
     9  polaris:
    10    image:
    11      repository: polarismesh/polaris-server
    12      tag: ##POLARIS_SERVER_VERSION##
    13      pullPolicy: Always
    14    limit:
    15      cpu: "500m"
    16      memory: "1000Mi"
    17    console:
    18      image:
    19        repository: polarismesh/polaris-console
    20        tag: ##POLARIS_CONSOLE_VERSION##
    21        pullPolicy: Always
    22      limit:
    23        cpu: "500m"
    24        memory: "1000Mi"
    25    limiter:
    26      image:
    27        repository: polarismesh/polaris-limiter
    28        tag: ##POLARIS_LIMITER_VERSION##
    29        pullPolicy: Always
    30      limit:
    31        cpu: "500m"
    32        memory: "1000Mi"
    33    healthChecker:
    34      type: heartbeatRedis
    35      type: heartbeatLeader
    36    replicaCount: 1
    37    limiterReplicaCount: 1
    38    auth:
    39      consoleOpen: true
    40      clientOpen: false
    41    storage:
    42      db:
    43        server:
    44          address: localhost:3306
    45          name: polaris_server
    46          user: root
    47          password: polaris@123456
    48      redis:
    49        address: localhost:6379
    50        # ACL user from redis v6.0, remove it if ACL is not available
    51        # user: polaris
    52        password: polaris@123456 # AUTH password below redis v6.0, or ACL password from redis v6.0
    53        withTLS: false
    54  
    55  prometheus:
    56    image:
    57      repository: polarismesh/polaris-prometheus
    58      tag: ##POLARIS_PROMETHEUS_VERSION##
    59      pullPolicy: Always
    60    pushgateway:
    61      image:
    62        repository: prom/pushgateway
    63        tag: latest
    64        pullPolicy: Always
    65  
    66  service:
    67    type: LoadBalancer
    68    webPort: 8080
    69    eurekaPort: 8761
    70    httpPort: 8090
    71    serviceGrpcPort: 8091
    72    xdsv3Port: 15010
    73    configGrpcPort: 8093
    74    limiterHttpPort: 8100
    75    limiterGrpcPort: 8101
    76  
    77  monitor:
    78    port: 9091
    79  
    80  installation:
    81    namespace: polaris-system