I am trying to dip my toes into Robotmk… So far I have
- set up a Windows server
- deployed the Robotmk scheduler via the appropriate rule
- configured a proxy in that rule
I then try to initialize the runtime environment:
C:\ProgramData\checkmk\agent\bin\rcc.exe config import -f C:\robotmk\rcc_home\current_user\profile_robotmk.yaml
C:\ProgramData\checkmk\agent\bin\rcc.exe task shell
The second command starts to fetch stuff via the proxy, but then fails with
info libmamba Download error (35) SSL connect error [https://conda.anaconda.org/conda-forge/noarch/repodata.json.zst]
schannel: next InitializeSecurityContext failed: Unknown error (0x80092013) - The revocation function was unable to check revocation because the revocation server was offline.
This request should probably go to a Let’s Encrypt server, for which I don’t see an attempt in the proxy logs. On the other hand
openssl s_client -servername conda.anaconda.org -connect conda.anaconda.org:443 -crl_check
...
Verify return code: 3 (unable to get certificate CRL)
I am not so sure there is even a CRL to fetch at all. What am I missing here?