github.com/timoth-y/kicksware-api/order-service@v0.0.0-20201002192818-87b546a7ae5a/orders-chart/values.yaml (about)

     1  project: kicksware
     2  component: orders
     3  nameOverride: orders-service
     4  fullnameOverride: orders-service
     5  
     6  replicaCount: 1
     7  image:
     8    registry: registry.kicksware.com
     9    repository: api/orders-service
    10    pullPolicy: Always
    11    tag: latest
    12  
    13  service:
    14    type: ClusterIP
    15    port: 8080
    16  
    17  ingress:
    18    enabled: true
    19    entrypoints:
    20      - web
    21      - websecure
    22    tls:
    23      enabled: true
    24      certResolver: le
    25    routes:
    26      - host: api.kicksware.com
    27        paths:
    28          - /orders
    29        middlewares: []
    30        services:
    31          - name: orders-service
    32            port: 8080
    33            scheme: http
    34      - host: api.kicksware.com
    35        paths:
    36          - /health/orders
    37        middlewares:
    38          - name: health-stripprefix
    39            namespace: gateway
    40        services:
    41          - name: orders-service
    42            port: 8080
    43            scheme: http
    44  
    45  volumes: {}
    46  
    47  resources: {}
    48  
    49  autoscaling:
    50    enabled: false
    51    minReplicas: 1
    52    maxReplicas: 25
    53    targetCPUUtilizationPercentage: 80
    54    targetMemoryUtilizationPercentage: 80
    55  
    56  serviceAccount:
    57    create: true
    58    annotations: {}
    59    name: ""
    60  
    61  secrets:
    62    dockerRegistry: registry-token
    63    mounts:
    64      - name: auth-keys
    65        mountPath: /root/keys/auth
    66      - name: grpc-tls
    67        mountPath: /root/certs/grpc
    68      - name: mongo-tls
    69        mountPath: /root/certs/mongo
    70  
    71  config:
    72    environment: PROD
    73    configMountPath: /root/env
    74  
    75  environment:
    76    ENV: k8s
    77    CONFIG_PATH: env/config.yaml
    78    GODEBUG: x509ignoreCN=0
    79    ELASTIC_APM_SERVICE_NAME: apm-server
    80    ELASTIC_APM_SERVER_URL: http://apm.kicksware.com:80