Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for installPackagePath (0.52 sec)

  1. operator/pkg/manifest/shared.go

    	client kube.Client, l clog.Logger,
    ) (string, *iopv1alpha1.IstioOperator, error) {
    	installPackagePath, err := getInstallPackagePath(fileOverlayYAML)
    	if err != nil {
    		return "", nil, err
    	}
    	if sfp := GetValueForSetFlag(setFlags, "installPackagePath"); sfp != "" {
    		// set flag installPackagePath has the highest precedence, if set.
    		installPackagePath = sfp
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 03 06:27:07 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  2. operator/cmd/mesh/manifest_shared_test.go

    	l := clog.NewDefaultLogger()
    	_, iop, err := manifest.GenerateConfig(
    		[]string{inFileAbsolutePath(inFile)},
    		[]string{"installPackagePath=" + string(chartSource)},
    		false, c, l)
    	if err != nil {
    		return nil, err
    	}
    
    	iop.Spec.InstallPackagePath = string(chartSource)
    
    	reconciler, err := helmreconciler.NewHelmReconciler(testClient, c, iop, opts)
    	if err != nil {
    		return nil, err
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 20 22:39:28 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  3. operator/pkg/component/component.go

    func createHelmRenderer(c *CommonComponentFields) helm.TemplateRenderer {
    	iop := c.InstallSpec
    	cns := string(c.ComponentName)
    	helmSubdir := c.Translator.ComponentMap(cns).HelmSubdir
    	return helm.NewHelmRenderer(iop.InstallPackagePath, helmSubdir, cns, c.Namespace, c.Version)
    }
    
    func isCoreComponentEnabled(c *CommonComponentFields) bool {
    	enabled, err := c.Translator.IsComponentEnabled(c.ComponentName, c.InstallSpec)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 10 15:35:03 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  4. operator/pkg/verifier/verifier.go

    				v.client, v.logger)
    			if err != nil {
    				v.reportFailure(kind, name, namespace, err)
    				return err
    			}
    			if v.manifestsPath != "" {
    				iop.Spec.InstallPackagePath = v.manifestsPath
    			}
    			if v1alpha1.Namespace(iop.Spec) == "" {
    				v1alpha1.SetNamespace(iop.Spec, v.istioNamespace)
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 15K bytes
    - Viewed (0)
  5. operator/cmd/mesh/manifest-generate_test.go

    			desc:       "install_package_path",
    			diffSelect: "Deployment:*:istiod",
    			flags:      "--set installPackagePath=" + string(liveCharts),
    		},
    		{
    			// Specify both charts and profile from local filesystem.
    			desc:       "install_package_path",
    			diffSelect: "Deployment:*:istiod",
    			flags:      fmt.Sprintf("--set installPackagePath=%s --set profile=%s/profiles/default.yaml", string(liveCharts), string(liveCharts)),
    		},
    	})
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  6. tests/integration/operator/switch_cr_test.go

    kind: IstioOperator
    metadata:
      name: %s
      namespace: istio-system
    spec:
    `
    	if revision != "" {
    		metadataYAML += "  revision: " + revision + "\n"
    	}
    
    	metadataYAML += `
      profile: %s
      installPackagePath: %s
      hub: %s
      tag: %s
      values:
        global:
          variant: %q
          imagePullPolicy: %s
    `
    	s := ctx.Settings()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  7. pkg/kube/inject/webhook_test.go

    // This allows us to fully simulate what will actually happen at run time.
    func writeInjectionSettings(t testing.TB, fname string, setFlags []string, inFilePath string) {
    	// add --set installPackagePath=<path to charts snapshot>
    	setFlags = append(setFlags, "installPackagePath="+defaultInstallPackageDir(), "profile=empty", "components.pilot.enabled=true")
    	var inFilenames []string
    	if inFilePath != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 39K bytes
    - Viewed (1)
  8. operator/README.md

    ```yaml
    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    spec:
      profile: /usr/home/bob/go/src/github.com/ostromart/istio-installer/data/profiles/default.yaml
      installPackagePath: /usr/home/bob/go/src/github.com/ostromart/istio-installer/data/charts/
    ```
    
    You can mix and match these approaches. For example, you can use a compiled-in configuration profile with charts in your
    local file system.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Sep 17 08:27:52 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  9. operator/pkg/controller/istiocontrolplane/istiocontrolplane_controller.go

    // returns the merged result.
    func mergeIOPSWithProfile(iop *iopv1alpha1.IstioOperator) (*v1alpha1.IstioOperatorSpec, error) {
    	profileYAML, err := helm.GetProfileYAML(iop.Spec.InstallPackagePath, iop.Spec.Profile)
    	if err != nil {
    		metrics.CountCRMergeFail(metrics.CannotFetchProfileError)
    		return nil, err
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 13:56:46 UTC 2024
    - 19.4K bytes
    - Viewed (0)
Back to top