rvojcik / gitlab-project-export

Simple python project for exporting GitLab projects with Export Project funkcionality in GitLab API. Import of exported projects is also supported
GNU General Public License v3.0
103 stars 39 forks source link

option for self-signed certs? #10

Closed sre-ops closed 3 years ago

sre-ops commented 3 years ago

As many people run gitlab on private instances, they may be using self-signed certs. Is there a technique to work with this setup?

I'm thinking of a couple different solutions:

rvojcik commented 3 years ago

Hi @sre-ops ,

It's good idea, i'll allocate some time to implement it.

I'll add option for optional CA cert bundle and also for disable SSL verification. It can be helpful also for development and testing purposes.

rvojcik commented 3 years ago

@sre-ops I have added gitlab.access.ssl_verify option to configuration file. Check config.yaml-example

sre-ops commented 3 years ago

Awesome work, thank you!