- Sort Score
- Result 10 results
- Languages All
Results 131 - 140 of 391 for istio (0.03 sec)
-
istioctl/cmd/istioctl/doc.go
// See the License for the specific language governing permissions and // limitations under the License. // Command istioctl is a Istio configuration command line utility.
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri May 29 20:42:01 UTC 2020 - 715 bytes - Viewed (0) -
istioctl/pkg/tag/util.go
import ( "context" "fmt" "github.com/hashicorp/go-multierror" admitv1 "k8s.io/api/admissionregistration/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/client-go/kubernetes" "istio.io/api/label" "istio.io/istio/istioctl/pkg/util" ) func GetRevisionWebhooks(ctx context.Context, client kubernetes.Interface) ([]admitv1.MutatingWebhookConfiguration, error) {
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Oct 09 16:05:45 UTC 2024 - 5.5K bytes - Viewed (0) -
istioctl/pkg/install/k8sversion/version_test.go
package k8sversion import ( "bytes" "fmt" "strings" "testing" "k8s.io/apimachinery/pkg/version" fakediscovery "k8s.io/client-go/discovery/fake" "istio.io/istio/operator/pkg/util/clog" "istio.io/istio/pkg/kube" pkgVersion "istio.io/istio/pkg/version" ) var ( version1_17 = &version.Info{ Major: "1", Minor: "17", GitVersion: "1.17", } version1_8 = &version.Info{
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Oct 30 21:50:50 UTC 2024 - 6.5K bytes - Viewed (0) -
cni/pkg/install/monitoring.go
// See the License for the specific language governing permissions and // limitations under the License. package install import "istio.io/istio/pkg/monitoring" var ( resultLabel = monitoring.CreateLabel("result") resultSuccess = "SUCCESS" resultCopyBinariesFailure = "COPY_BINARIES_FAILURE" resultCreateKubeConfigFailure = "CREATE_KUBECONFIG_FAILURE"
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Jul 17 20:25:52 UTC 2023 - 1.2K bytes - Viewed (0) -
istioctl/pkg/multicluster/remote_secret.go
"k8s.io/client-go/tools/clientcmd/api/latest" "istio.io/istio/istioctl/pkg/cli" "istio.io/istio/istioctl/pkg/util" "istio.io/istio/operator/cmd/mesh" "istio.io/istio/operator/pkg/component" "istio.io/istio/operator/pkg/render" "istio.io/istio/pkg/config/constants" "istio.io/istio/pkg/config/labels" "istio.io/istio/pkg/kube" "istio.io/istio/pkg/kube/multicluster" "istio.io/istio/pkg/log" ) var ( codec runtime.Codec
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Aug 15 16:31:46 UTC 2024 - 23.3K bytes - Viewed (0) -
istioctl/pkg/config/config.go
package config import ( "fmt" "io" "sort" "text/tabwriter" "github.com/spf13/cobra" "github.com/spf13/viper" "istio.io/istio/istioctl/pkg/root" "istio.io/istio/pkg/config/constants" "istio.io/istio/pkg/env" ) // settableFlags are the flags used to istioctl var settableFlags = map[string]env.VariableInfo{
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Sun Jul 30 12:16:07 UTC 2023 - 3.1K bytes - Viewed (0) -
cni/deployments/kubernetes/Dockerfile.install-cni
# This will build the final image based on either debug or distroless from above # hadolint ignore=DL3006 FROM ${BASE_DISTRIBUTION:-debug} LABEL description="Istio CNI plugin installer." ARG TARGETARCH COPY ${TARGETARCH:-amd64}/istio-cni /opt/cni/bin/istio-cni COPY ${TARGETARCH:-amd64}/install-cni /usr/local/bin/install-cni ENV PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/opt/cni/bin WORKDIR /opt/cni/bin
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Jun 26 22:17:14 UTC 2024 - 1002 bytes - Viewed (0) -
common/scripts/report_build_info.sh
GIT_DESCRIBE_TAG=$(git describe --tags --always) HUB=${HUB:-"docker.io/istio"} # used by common/scripts/gobuild.sh echo "istio.io/istio/pkg/version.buildVersion=${VERSION:-$BUILD_GIT_REVISION}" echo "istio.io/istio/pkg/version.buildGitRevision=${BUILD_GIT_REVISION}" echo "istio.io/istio/pkg/version.buildStatus=${tree_status}" echo "istio.io/istio/pkg/version.buildTag=${GIT_DESCRIBE_TAG}" echo "istio.io/istio/pkg/version.buildHub=${HUB}"
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Tue May 23 17:08:31 UTC 2023 - 1.9K bytes - Viewed (0) -
istioctl/pkg/writer/compare/comparator.go
"google.golang.org/protobuf/reflect/protoregistry" "google.golang.org/protobuf/types/known/emptypb" "istio.io/istio/istioctl/pkg/util/configdump" ) // Comparator diffs between a config dump from Istiod and one from Envoy type Comparator struct { envoy, istiod *configdump.Wrapper w io.Writer context int location string } // NewComparator is a comparator constructor
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Sun Apr 21 17:42:54 UTC 2024 - 3.7K bytes - Viewed (0) -
istioctl/pkg/writer/envoy/configdump/configdump.go
import ( "fmt" "io" "strings" "text/tabwriter" adminv3 "github.com/envoyproxy/go-control-plane/envoy/admin/v3" "sigs.k8s.io/yaml" "istio.io/istio/istioctl/pkg/util/configdump" sdscompare "istio.io/istio/istioctl/pkg/writer/compare/sds" "istio.io/istio/pkg/util/protomarshal" ) // ConfigWriter is a writer for processing responses from the Envoy Admin config_dump endpoint type ConfigWriter struct {
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Feb 29 20:46:41 UTC 2024 - 7.4K bytes - Viewed (0)