Remove GIT_SSL_NO_VERIFY, fix root cause with DinD MTU=1340
CI - Lint & Test / lint-and-test (push) Failing after 5m15s
Details
CI - Lint & Test / lint-and-test (push) Failing after 5m15s
Details
The TLS handshake failure was caused by MTU mismatch (pod: 1340, DinD bridge: 1500), not certificate verification. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
7959cc2297
commit
26dbb30ead
|
|
@ -6,9 +6,6 @@ on:
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: [main]
|
branches: [main]
|
||||||
|
|
||||||
env:
|
|
||||||
GIT_SSL_NO_VERIFY: "true"
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
lint-and-test:
|
lint-and-test:
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-22.04
|
||||||
|
|
|
||||||
|
|
@ -7,9 +7,6 @@ on:
|
||||||
- "dvc.yaml"
|
- "dvc.yaml"
|
||||||
- "dvc.lock"
|
- "dvc.lock"
|
||||||
|
|
||||||
env:
|
|
||||||
GIT_SSL_NO_VERIFY: "true"
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
validate-data:
|
validate-data:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
|
||||||
|
|
@ -8,9 +8,6 @@ on:
|
||||||
- "configs/**"
|
- "configs/**"
|
||||||
- "dvc.yaml"
|
- "dvc.yaml"
|
||||||
|
|
||||||
env:
|
|
||||||
GIT_SSL_NO_VERIFY: "true"
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
train:
|
train:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
|
||||||
|
|
@ -20,8 +20,6 @@ data:
|
||||||
file: .runner
|
file: .runner
|
||||||
capacity: 1
|
capacity: 1
|
||||||
timeout: 3h
|
timeout: 3h
|
||||||
envs:
|
|
||||||
GIT_SSL_NO_VERIFY: "true"
|
|
||||||
labels:
|
labels:
|
||||||
- "ubuntu-latest:docker://catthehacker/ubuntu:act-22.04"
|
- "ubuntu-latest:docker://catthehacker/ubuntu:act-22.04"
|
||||||
- "ubuntu-22.04:docker://catthehacker/ubuntu:act-22.04"
|
- "ubuntu-22.04:docker://catthehacker/ubuntu:act-22.04"
|
||||||
|
|
@ -87,6 +85,8 @@ spec:
|
||||||
mountPath: /certs
|
mountPath: /certs
|
||||||
- name: docker-in-docker
|
- name: docker-in-docker
|
||||||
image: docker:dind
|
image: docker:dind
|
||||||
|
args:
|
||||||
|
- --mtu=1340
|
||||||
securityContext:
|
securityContext:
|
||||||
privileged: true
|
privileged: true
|
||||||
env:
|
env:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue