Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 371 for VERSION (0.07 sec)

  1. pkg/config/schema/collections/collections.gen.go

    )
    
    var (
    	AuthorizationPolicy = resource.Builder{
    		Identifier: "AuthorizationPolicy",
    		Group:      "security.istio.io",
    		Kind:       "AuthorizationPolicy",
    		Plural:     "authorizationpolicies",
    		Version:    "v1beta1",
    		VersionAliases: []string{
    			"v1",
    		},
    		Proto: "istio.security.v1beta1.AuthorizationPolicy", StatusProto: "istio.meta.v1alpha1.IstioStatus",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 31.4K bytes
    - Viewed (0)
  2. tests/integration/helm/util.go

    	scopes.Framework.Infof("=== setting revision tag with version === ")
    	// Prepend ~ to the version, so that we can refer to the latest patch version of a minor version
    	template, err := h.Template(IstiodReleaseName+"-"+revision, RepoDiscoveryChartPath,
    		IstioNamespace, "templates/revision-tags.yaml", Timeout, "--version", "~"+version, "--repo", ctx.Settings().HelmRepo, "--set",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  3. tools/docker-builder/main.go

    	rootCmd.Flags().StringVar(&globalArgs.ProxyVersion, "proxy-version", globalArgs.ProxyVersion, "proxy version to use")
    	rootCmd.Flags().StringVar(&globalArgs.ZtunnelVersion, "ztunnel-version", globalArgs.ZtunnelVersion, "ztunnel version to use")
    	rootCmd.Flags().StringVar(&globalArgs.IstioVersion, "istio-version", globalArgs.IstioVersion, "istio version to use")
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 13:23:41 UTC 2023
    - 10K bytes
    - Viewed (0)
  4. pilot/pkg/status/distribution/reporter.go

    	defer r.mu.Unlock()
    	key := GenStatusReporterMapKey(conID, distributionType)
    	r.deleteKeyFromReverseMap(key)
    	var version string
    	if len(nonce) > 12 {
    		version = nonce[:xds.VersionLen]
    	} else {
    		version = nonce
    	}
    	// touch
    	r.status[key] = version
    	sets.InsertOrNew(r.reverseStatus, version, key)
    }
    
    // This is a helper function for keeping our reverseStatus map in step with status.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 30 17:25:17 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  5. pkg/config/model.go

    var _ fmt.Stringer = GroupVersionKind{}
    
    type GroupVersionKind struct {
    	Group   string `json:"group"`
    	Version string `json:"version"`
    	Kind    string `json:"kind"`
    }
    
    func (g GroupVersionKind) String() string {
    	return g.CanonicalGroup() + "/" + g.Version + "/" + g.Kind
    }
    
    // GroupVersion returns the group/version similar to what would be found in the apiVersion field of a Kubernetes resource.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  6. pkg/kube/client.go

    				err,
    			)
    			continue
    		}
    		var v version.Version
    		err = json.Unmarshal(result, &v)
    		if err == nil && v.ClientVersion.Version != "" {
    			server.Info = *v.ClientVersion
    			res = append(res, server)
    			continue
    		}
    		// :15014/version returns something like
    		// 1.7-alpha.9c900ba74d10a1affe7c23557ef0eebd6103b03c-9c900ba74d10a1affe7c23557ef0eebd6103b03c-Clean
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 39K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/deploymentcontroller.go

    	ControllerVersionAnnotation = "gateway.istio.io/controller-version"
    	// ControllerVersion is the current version of our controller logic. Known versions are:
    	//
    	// * 1.17 and older: version 1 OR no version at all, depending on patch release
    	// * 1.18+: version 5
    	//
    	// 2, 3, and 4 were intentionally skipped to allow for the (unlikely) event we need to insert
    	// another version between these
    	ControllerVersion = 5
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  8. istioctl/cmd/root.go

    	xdsBasedTroubleshooting := []*cobra.Command{
    		// TODO(hanxiaop): I think experimental version still has issues, so we keep the old version for now.
    		version.XdsVersionCommand(ctx),
    		// TODO(hanxiaop): this is kept for some releases in case someone is using it.
    		proxystatus.XdsStatusCommand(ctx),
    	}
    	troubleshootingCommands := []*cobra.Command{
    		version.NewVersionCommand(ctx),
    		proxystatus.StableXdsStatusCommand(ctx),
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:33 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. operator/pkg/controller/istiocontrolplane/istiocontrolplane_controller.go

    		{Group: "apps", Version: "v1", Kind: name.DeploymentStr},
    		{Group: "apps", Version: "v1", Kind: name.DaemonSetStr},
    		{Group: "", Version: "v1", Kind: name.ServiceStr},
    		// Endpoints should not be pruned because these are generated and not in the manifest.
    		// {Group: "", Version: "v1", Kind: name.EndpointStr},
    		{Group: "", Version: "v1", Kind: name.CMStr},
    		{Group: "", Version: "v1", Kind: name.PodStr},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 13:56:46 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  10. pilot/pkg/model/extensions_test.go

    							WasmResourceVersionEnv: "dummy-resource-version",
    						},
    					},
    				},
    			},
    		},
    	}
    
    	for _, tc := range cases {
    		t.Run(tc.desc, func(t *testing.T) {
    			got := buildVMConfig(nil, "dummy-resource-version", &extensions.WasmPlugin{
    				VmConfig:        tc.vm,
    				ImagePullSecret: "secret-name",
    				ImagePullPolicy: tc.policy,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 14.4K bytes
    - Viewed (0)
Back to top