Skip to content
Discussion options

You must be logged in to vote

Hi @HotelSixXrayOne and @Edarjak,

You may try to create .env file:

NODE_EXTRA_CA_CERTS=/etc/ssl/certs/root-ca.pem

And attach it to the runner using configMap (add .env as configMap), volumes and volumeMounts:

    volumes:
        - name: env-file
          configMap:
            name: env-file
        - name: ca-cert
          configMap:
            name: ca-cert
      volumeMounts:
        - name: env-file
          mountPath: /runner/.env
          subPath: .env
          readOnly: true
        - name: ca-cert
          mountPath: /etc/ssl/certs/root-ca.pem
          subPath: root-ca.pem
          readOnly: true

If you are running GHES in the isolated environment, try to sync CodeQL a…

Replies: 3 comments 1 reply

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
1 reply
@Edarjak
Comment options

Answer selected by Edarjak
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
3 participants