apiVersion: apps/v1 kind: Deployment metadata: name: flagger-loadtester labels: app: flagger-loadtester spec: selector: matchLabels: app: flagger-loadtester template: metadata: labels: app: flagger-loadtester annotations: prometheus.io/scrape: "true" spec: containers: - name: loadtester image: weaveworks/flagger-loadtester:0.11.0 imagePullPolicy: IfNotPresent ports: - name: http containerPort: 8080 command: - ./loadtester - -port=8080 - -log-level=info - -timeout=1h livenessProbe: exec: command: - wget - --quiet - --tries=1 - --timeout=4 - --spider - http://localhost:8080/healthz timeoutSeconds: 5 readinessProbe: exec: command: - wget - --quiet - --tries=1 - --timeout=4 - --spider - http://localhost:8080/healthz timeoutSeconds: 5 resources: limits: memory: "512Mi" cpu: "1000m" requests: memory: "32Mi" cpu: "10m" securityContext: readOnlyRootFilesystem: true runAsUser: 10001 # volumeMounts: # - name: tests # mountPath: /bats # readOnly: true # volumes: # - name: tests # configMap: # name: flagger-loadtester-bats