Replies: 1 comment
-
After reading the doc, I found a filed--insecure, set it to true, the client will use HTTP apiVersion: argoproj.io/v1alpha1
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm testing argo artifact with MinIO, but comes a error:
server gave HTTP response to HTTPS client
time="2021-05-14T09:57:11.301Z" level=warning msg="Failed get file: Get https://argo-artifacts.datalake:9000/data-quota/?location=: http: server gave HTTP response to HTTPS client"
time="2021-05-14T09:57:42.129Z" level=error msg="executor error: timed out waiting for the condition"
time="2021-05-14T09:57:42.157Z" level=fatal msg="timed out waiting for the condition"
Here is the yaml:
apiVersion: argoproj.io/v1alpha1
kind: Workflow
metadata:
generateName: s3-artifacts-test-
spec:
entrypoint: s3-artifacts-test
templates:
inputs:
artifacts:
path: /s3
s3:
endpoint: argo-artifacts.datalake:9000
bucket: data-quota
key: wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY
accessKeySecret:
name: argo-s3-credentials
key: accessKey
secretKeySecret:
name: argo-s3-credentials
key: secretKey
container:
image: debian
command: [sh, -c]
args: ["ls -l /s3"]
I think i should change my client from HTTPS to HTTP, but i don't know how, please help me, thanks.
Beta Was this translation helpful? Give feedback.
All reactions