# Copyright 2018 Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. apiVersion: apps/v1 kind: StatefulSet metadata: name: adservice spec: serviceName: adservice selector: matchLabels: app: adservice version: "1" replicas: 3 template: metadata: labels: app: adservice version: "1" tingyun-agent-injected: "true" spec: terminationGracePeriodSeconds: 5 containers: - name: server image: {{ .Values.images.repository }}/{{ .Values.adService.name }}:{{ .Values.images.tag }} imagePullPolicy: Always ports: - containerPort: 9555 env: - name: PORT value: "9555" #- name: DISABLE_STATS # value: "1" # - name: DISABLE_TRACING # value: "1" - name: JAEGER_HOST value: "jaeger-collector.observability.svc.cluster.local" - name: ZIPKIN_PORT value: "9411" # value: "14268" - name: POD_IP valueFrom: fieldRef: fieldPath: status.podIP - name: POD_NAME valueFrom: fieldRef: fieldPath: metadata.name - name: NODE_NAME valueFrom: fieldRef: fieldPath: spec.nodeName - name: SERVICE_NAME value: "adservice" - name: MYSQL_ADDR value: "223.193.36.169:4000" - name: SQL_USER value: "root" - name: SQL_PASSWORD value: "123456" resources: requests: cpu: 400m memory: 360Mi limits: cpu: 600m memory: 600Mi #readinessProbe: # initialDelaySeconds: 20 # periodSeconds: 15 # exec: # command: ["/bin/grpc_health_probe", "-addr=:9555"] #livenessProbe: # initialDelaySeconds: 20 # periodSeconds: 15 # exec: # command: ["/bin/grpc_health_probe", "-addr=:9555"] --- apiVersion: v1 kind: Service metadata: name: adservice spec: type: ClusterIP selector: app: adservice version: "1" ports: - name: grpc port: 9555 targetPort: 9555 - port: 8088 protocol: TCP name: jmx-metrics