diff options
author | 2021-10-01 12:22:06 +0200 | |
---|---|---|
committer | 2021-12-07 13:59:24 +0000 | |
commit | 5e6967f1c6df40720e748977c7d9514c0463035c (patch) | |
tree | 138a1c67cef37d5bbb221aca9a44b0bd2acfd120 /robot/assets/helm/sftp/values.yaml | |
parent | a93a8881de7253dca565678814920349b061bef7 (diff) |
[ROBOT] ADD BULKPM test cases that use helm based component services
Signed-off-by: Krzysztof Kuzmicki <krzysztof.kuzmicki@nokia.com>
Issue-ID: INT-1895
Change-Id: I32389f4f0cd0d2e9fb7b73b99554a4722c4687d0
Diffstat (limited to 'robot/assets/helm/sftp/values.yaml')
-rw-r--r-- | robot/assets/helm/sftp/values.yaml | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/robot/assets/helm/sftp/values.yaml b/robot/assets/helm/sftp/values.yaml new file mode 100644 index 00000000..2ed5d94c --- /dev/null +++ b/robot/assets/helm/sftp/values.yaml @@ -0,0 +1,50 @@ +global: + +replicaCount: 1 + +nameOverride: "sftp" + +image: + repository: atmoz/sftp + pullPolicy: IfNotPresent + # Overrides the image tag whose default is the chart appVersion. + +imagePullSecrets: [] + +pod: + port: 22 + +ingress: + enabled: false + +podAnnotations: {} + +podSecurityContext: {} + # fsGroup: 2000 + +securityContext: {} + # capabilities: + # drop: + # - ALL + # readOnlyRootFilesystem: true + # runAsNonRoot: true + # runAsUser: 1000 +env: + users: "bulkpm:bulkpm:::upload" + +service: + type: NodePort + port: 32222 + +autoscaling: + enabled: false + minReplicas: 1 + maxReplicas: 1 + targetCPUUtilizationPercentage: 80 + # targetMemoryUtilizationPercentage: 80 + +nodeSelector: {} + +tolerations: [] + +affinity: {} |