Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for private_key_file (0.21 sec)

  1. samples/addons/kiali.yaml

          custom_dashboards:
            enabled: true
          istio:
            root_namespace: istio-system
          tracing:
            enabled: false
        identity:
          cert_file: ""
          private_key_file: ""
        istio_namespace: istio-system
        kiali_feature_flags:
          certificates_information_indicators:
            enabled: true
            secrets:
            - cacerts
            - istio-ca-secret
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  2. cmd/common-main.go

    				continue
    			}
    			if !file.IsDir() {
    				continue
    			}
    		}
    
    		var (
    			certFile = filepath.Join(root.Name(), file.Name(), publicCertFile)
    			keyFile  = filepath.Join(root.Name(), file.Name(), privateKeyFile)
    		)
    		if !isFile(certFile) || !isFile(keyFile) {
    			continue
    		}
    		if err = manager.AddCertificate(certFile, keyFile); err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 31.5K bytes
    - Viewed (0)
Back to top