- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 90 for manifests (0.1 sec)
-
architecture/environments/operator.md
subdirectory as a Cobra command with the following subcommands: - [manifest](../operator/cmd/mesh/manifest.go): the manifest subcommand is used to generate, install, diff or migrate Istio manifests, it has the following subcommands: - [install](../operator/cmd/mesh/install.go): the install subcommand is used to generate an Istio install manifest and apply it to a cluster.
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Jul 29 21:11:35 UTC 2024 - 13.2K bytes - Viewed (0) -
manifests/charts/UPDATING-CHARTS.md
```bash $ make operator-proto ``` This will regenerate the Go structs used for schema validation. ### Step 4. Update the generated manifests Tests of istioctl use the auto-generated manifests to ensure that the istioctl binary has the correct version of the charts. To regenerate the manifests, run: ```bash $ make copy-templates update-golden ``` ### Step 5. Create a PR using outputs from Steps 1 to 4
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Aug 15 16:31:46 UTC 2024 - 4.8K bytes - Viewed (0) -
istioctl/pkg/tag/generate.go
} } return whConfig, nil } // Create applies the given tag manifests. func Create(client kube.CLIClient, manifests, ns string) error { if err := client.ApplyYAMLContents(ns, manifests); err != nil { return fmt.Errorf("failed to apply tag manifests to cluster: %v", err) } return nil }
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Oct 09 16:05:45 UTC 2024 - 13.3K bytes - Viewed (0) -
Makefile.core.mk
copy-templates: rm manifests/charts/gateways/istio-egress/templates/* # gateway charts cp -r manifests/charts/gateways/istio-ingress/templates/* manifests/charts/gateways/istio-egress/templates find ./manifests/charts/gateways/istio-egress/templates -type f -exec sed -i -e 's/ingress/egress/g' {} \;
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Oct 03 23:53:59 UTC 2024 - 18.4K bytes - Viewed (0) -
istioctl/pkg/multicluster/remote_secret_test.go
mustFindObject(t, objs, "istio-reader-clusterrole-istio-system", "ClusterRoleBinding") } func mustFindObject(t test.Failer, objs []manifest.Manifest, name, kind string) { t.Helper() var obj *manifest.Manifest for _, o := range objs { if o.GetKind() == kind && o.GetName() == name { obj = &o break } } if obj == nil { t.Fatalf("expected %v/%v", name, kind)
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Oct 24 17:36:49 UTC 2024 - 20.7K bytes - Viewed (0) -
.gitignore
vendor # Contains the built artifacts out/ etc/ var/ # Go compiled tests *.test # Profiles *.prof # MacOS extended attributes ._* # MacOS Desktop Services Store .DS_Store /manifests/charts/**/charts/
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Tue May 21 21:20:01 UTC 2024 - 1.1K bytes - Viewed (0) -
.gitattributes
*.descriptor_set -diff -merge *.pb.html linguist-generated=true *.pb.go linguist-generated=true *.gen.go linguist-generated=true *.gen.yaml linguist-generated=true *.gen.json linguist-generated=true *_pb2.py linguist-generated=true manifests/charts/**/profile*.yaml linguist-generated=true go.sum merge=union vendor/** linguist-vendored common/** linguist-vendored archive/** linquist-vendored
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Feb 01 19:15:39 UTC 2024 - 545 bytes - Viewed (0) -
bin/update_crds.sh
echo "Generated Custom Resource Definitions file does not exist in the commit SHA ${SHA}. Not updating the CRD file." exit fi rm -f "${ROOTDIR}/manifests/charts/base/files/crd-all.gen.yaml" cp "${API_TMP}/kubernetes/customresourcedefinitions.gen.yaml" "${ROOTDIR}/manifests/charts/base/files/crd-all.gen.yaml" cp "${API_TMP}"/tests/testdata/* "${ROOTDIR}/pkg/config/validation/testdata/crds" cd "${ROOTDIR}"
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Tue Oct 01 20:23:30 UTC 2024 - 3.5K bytes - Viewed (0) -
manifests/addons/dashboards/README.md
## Legacy Dashboards Many of our older dashboards are manually created in the UI and exported as JSON and checked in. ## Generation
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Tue Jun 04 18:05:06 UTC 2024 - 815 bytes - Viewed (0) -
istioctl/pkg/util/common.go
"istio.io/deactivated": "never-match", }, } var ManifestsFlagHelpStr = `Specify a path to a directory of charts and profiles (e.g. ~/Downloads/istio-` + binversion.OperatorVersionString + `/manifests).` // CommandParseError distinguishes an error parsing istioctl CLI arguments from an error processing type CommandParseError struct { Err error } func (c CommandParseError) Error() string {
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Jun 15 15:02:17 UTC 2023 - 1.6K bytes - Viewed (0)