Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for installPackagePath (0.08 sec)

  1. istioctl/pkg/tag/generate.go

    func generateValidatingWebhook(config *tagWebhookConfig, opts *GenerateOptions) (string, error) {
    	vals := values.Map{
    		"spec": values.Map{
    			"installPackagePath": opts.ManifestsPath,
    			"values": values.Map{
    				"revision": config.Revision,
    				"base":     values.Map{"validationURL": config.URL},
    				"global":   values.Map{"istioNamespace": config.IstioNamespace},
    			},
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Wed Oct 09 16:05:45 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. istioctl/pkg/multicluster/remote_secret.go

    	}
    
    	// Apply the YAML to the cluster.
    	return client.ApplyYAMLContents(opt.Namespace, yaml)
    }
    
    func generateServiceAccountYAML(opt RemoteSecretOptions) (string, error) {
    	flags := []string{"installPackagePath=" + opt.ManifestsPath, "values.global.istioNamespace=" + opt.Namespace}
    	mfs, _, err := render.GenerateManifest(nil, flags, false, nil, nil)
    	if err != nil {
    		return "", err
    	}
    	included := []string{}
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Thu Aug 15 16:31:46 UTC 2024
    - 23.3K bytes
    - Viewed (0)
Back to top