github.com/stefanmcshane/helm@v0.0.0-20221213002717-88a4a2c6e77d/pkg/downloader/testdata/repositories.yaml (about) 1 apiVersion: v1 2 repositories: 3 - name: testing 4 url: "http://example.com" 5 - name: testing-https 6 url: "https://example.com" 7 - name: testing-basicauth 8 url: "http://username:password@example.com" 9 - name: kubernetes-charts 10 url: "http://example.com/charts" 11 - name: malformed 12 url: "http://dl.example.com" 13 - name: testing-querystring 14 url: "http://example.com?key=value" 15 - name: testing-relative 16 url: "http://example.com/helm" 17 - name: testing-relative-trailing-slash 18 url: "http://example.com/helm/" 19 - name: testing-ca-file 20 url: "https://example.com" 21 certFile: "cert" 22 keyFile: "key" 23 caFile: "ca" 24 - name: testing-https-insecureskip-tls-verify 25 url: "https://example-https-insecureskiptlsverify.com" 26 insecure_skip_tls_verify: true 27 - name: encoded-url 28 url: "http://example.com/with%2Fslash"