- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 199 for Revision (0.06 sec)
-
istioctl/pkg/tag/tag.go
overrideHelpStr = `If true, allow revision tags to be overwritten, otherwise reject revision tag updates that overwrite existing revision tags.` revisionHelpStr = "Control plane revision to reference from a given revision tag" tagCreatedStr = `Revision tag %q created, referencing control plane revision %q. To enable injection using this revision tag, use 'kubectl label namespace <NAMESPACE> istio.io/rev=%s' `
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Jul 22 15:40:30 UTC 2024 - 16.5K bytes - Viewed (0) -
istioctl/pkg/injector/injector-list.go
} // podCountByRevision() returns a map of revision->pods, with "<non-Istio>" as the dummy "revision" for uninjected pods func podCountByRevision(pods []corev1.Pod, expectedRevision string) map[string]revisionCount { retval := map[string]revisionCount{} for _, pod := range pods { revision := extractRevisionFromPod(&pod) revisionLabel := revision if revision == "" { revisionLabel = "<non-Istio>" }
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Oct 18 11:39:52 UTC 2024 - 10.6K bytes - Viewed (0) -
istioctl/pkg/checkinject/checkinject_test.go
Revision: "default", Reason: "Namespace has istio-injection=disabled label, preventing injection", }, { Name: "istio-sidecar-injector-1-16", Revision: "1-16", Injected: false, Reason: "Namespace has istio-injection=disabled label, preventing injection", }, { Name: "istio-sidecar-injector-deactivated", Revision: "default",
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Jun 15 15:02:17 UTC 2023 - 10.6K bytes - Viewed (0) -
istioctl/pkg/tag/generate.go
} // GenerateOptions is the group of options needed to generate a tag webhook. type GenerateOptions struct { // Tag is the name of the revision tag to generate. Tag string // Revision is the revision to associate the revision tag with. Revision string // WebhookName is an override for the mutating webhook name. WebhookName string
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Oct 09 16:05:45 UTC 2024 - 13.3K bytes - Viewed (0) -
istioctl/pkg/tag/generate_test.go
operatorManaged = operatorNamespace + "/managed" revisionCanonicalWebhook = admitv1.MutatingWebhookConfiguration{ ObjectMeta: metav1.ObjectMeta{ Name: "istio-sidecar-injector-revision", Labels: map[string]string{ label.IoIstioRev.Name: "revision", operatorManaged: "Reconcile", }, }, Webhooks: []admitv1.MutatingWebhook{ { Name: fmt.Sprintf("namespace.%s", istioInjectionWebhookSuffix),
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Oct 09 16:05:45 UTC 2024 - 12.1K bytes - Viewed (0) -
istioctl/pkg/workload/workload.go
func IstiodHost(ns string, revision string) string { istiod := "istiod" if isRevisioned(revision) { istiod = fmt.Sprintf("%s-%s", istiod, revision) } return fmt.Sprintf("%s.%s.svc", istiod, ns) } func IstiodAddr(ns, revision string) string { // TODO make port configurable return fmt.Sprintf("%s:%d", IstiodHost(ns, revision), 15012) } // Returns a map with each k,v entry on a new line
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Aug 15 16:31:46 UTC 2024 - 25.3K bytes - Viewed (0) -
istioctl/pkg/kubeinject/kubeinject.go
} func getMeshConfigFromConfigMap(ctx cli.Context, command, revision string) (*meshconfig.MeshConfig, error) { client, err := ctx.CLIClient() if err != nil { return nil, err } if meshConfigMapName == defaultMeshConfigMapName && revision != "" { meshConfigMapName = fmt.Sprintf("%s-%s", defaultMeshConfigMapName, revision) }
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Aug 15 16:31:46 UTC 2024 - 21K bytes - Viewed (0) -
istioctl/pkg/waypoint/waypoint.go
return nil }, } waypointApplyCmd.Flags().StringVarP(&revision, "revision", "r", "", "The revision to label the waypoint with") waypointApplyCmd.Flags().BoolVarP(&waitReady, "wait", "w", false, "Wait for the waypoint to be ready") waypointGenerateCmd.Flags().StringVarP(&revision, "revision", "r", "", "The revision to label the waypoint with") waypointCmd.AddCommand(waypointGenerateCmd)
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Oct 09 16:05:45 UTC 2024 - 19.6K bytes - Viewed (0) -
src/main/java/jcifs/smb/SID.java
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 14.9K bytes - Viewed (0) -
compat/maven-embedder/src/test/java/org/apache/maven/cli/MavenCliTest.java
CliRequest request = new CliRequest(new String[] {"-Drevision=8.1.0", "-Drevision=8.2.0"}, null); cli.initialize(request); // read .mvn/maven.config cli.cli(request); cli.properties(request); String revision = request.getUserProperties().getProperty("revision"); assertEquals("8.2.0", revision); } /**
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 30.3K bytes - Viewed (0)