Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 271 for kubeutil (0.12 sec)

  1. pilot/pkg/serviceregistry/kube/controller/endpoint_builder.go

    	"istio.io/istio/pilot/pkg/networking/util"
    	"istio.io/istio/pilot/pkg/serviceregistry/kube"
    	labelutil "istio.io/istio/pilot/pkg/serviceregistry/util/label"
    	"istio.io/istio/pkg/config/labels"
    	kubeUtil "istio.io/istio/pkg/kube"
    	"istio.io/istio/pkg/network"
    )
    
    // EndpointBuilder is a stateful IstioEndpoint builder with metadata used to build IstioEndpoint
    type EndpointBuilder struct {
    	controller controllerInterface
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/ambient/workloads.go

    	"istio.io/istio/pilot/pkg/model"
    	labelutil "istio.io/istio/pilot/pkg/serviceregistry/util/label"
    	"istio.io/istio/pkg/config/constants"
    	"istio.io/istio/pkg/config/labels"
    	"istio.io/istio/pkg/config/schema/kind"
    	kubeutil "istio.io/istio/pkg/kube"
    	"istio.io/istio/pkg/kube/krt"
    	kubelabels "istio.io/istio/pkg/kube/labels"
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/ptr"
    	"istio.io/istio/pkg/slices"
    	"istio.io/istio/pkg/workloadapi"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  3. pkg/kubelet/status/status_manager.go

    	kubecontainer "k8s.io/kubernetes/pkg/kubelet/container"
    	"k8s.io/kubernetes/pkg/kubelet/metrics"
    	"k8s.io/kubernetes/pkg/kubelet/status/state"
    	kubetypes "k8s.io/kubernetes/pkg/kubelet/types"
    	kubeutil "k8s.io/kubernetes/pkg/kubelet/util"
    	statusutil "k8s.io/kubernetes/pkg/util/pod"
    )
    
    // podStatusManagerStateFile is the file name where status manager stores its state
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 44.3K bytes
    - Viewed (0)
  4. cluster/gce/windows/smoke-test.sh

    #     (user=kube-apiserver, verb=create, resource=nodes, subresource=proxy)"
    
    # Override this to use a different kubectl binary.
    kubectl=kubectl
    linux_deployment_timeout=60
    windows_deployment_timeout=600
    output_file=/tmp/k8s-smoke-test.out
    
    function check_windows_nodes_are_ready {
      # kubectl filtering is the worst.
      statuses=$(${kubectl} get nodes -l kubernetes.io/os=windows \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  5. samples/open-telemetry/als/README.md

    ```bash
    kubectl exec -it $(kubectl get po | grep fortio | awk '{print $1}') -- fortio curl httpbin:8000/ip
    ```
    
    Run the following script to checkout ALS output.
    
    ```bash
    kubectl logs $(kubectl get po -n observability | grep otel | awk '{print $1}') -n observability
    ```
    
    ## Cleanup
    
    ```bash
    kubectl delete -f ../otel.yaml -n observability
    kubectl delete telemetry mesh-default -n istio-system
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Feb 18 16:38:12 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. samples/bookinfo/platform/kube/cleanup.sh

        for resource in $(kubectl get -n "${NAMESPACE}" "$proto" -o name); do
          kubectl delete -n "${NAMESPACE}" "$resource";
        done
      done
      kubectl delete -n "${NAMESPACE}" -f "$SCRIPTDIR/bookinfo-versions.yaml" >/dev/null 2>&1
    fi
    
    OUTPUT=$(mktemp)
    export OUTPUT
    echo "Application cleanup may take up to one minute"
    kubectl delete -n "${NAMESPACE}" -f "$SCRIPTDIR/bookinfo.yaml" > "${OUTPUT}" 2>&1
    ret=$?
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 16:07:18 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. hack/update-kustomize.sh

    echo -e "\n${color_blue}Committing changes${color_norm}"
    git add .
    git commit -a -m "Update kubectl kustomize to kyaml/$LATEST_KYAML, cmd/config/$LATEST_CONFIG, api/$LATEST_API, kustomize/$LATEST_KUSTOMIZE"
    
    echo -e "\n${color_blue:?}Verifying kubectl kustomize version${color_norm:?}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:40:04 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  8. samples/open-telemetry/tracing/README.md

    ## Start otel-collector service
    
    First, deploy the `otel-collector` backend with simple configuration.
    
    ```bash
    kubectl -n <namespace> apply -f ../otel.yaml
    ```
    
    In this example, we use `observability` as the namespace to deploy the `otel-collector` backend:
    
    ```bash
    kubectl create namespace observability
    kubectl -n observability apply -f ../otel.yaml
    ```
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Feb 18 16:38:12 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  9. samples/custom-bootstrap/README.md

    ```bash
    kubectl apply -f custom-bootstrap.yaml
    ```
    
    Next, we can create a service that uses this bootstrap configuration.
    
    To do this, we need to add an annotation, `sidecar.istio.io/bootstrapOverride`, with the name of our ConfigMap as the value.
    
    We can create our helloworld app, using the custom config, with:
    
    ```bash
    kubectl apply -f example-app.yaml
    ```
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 22:34:00 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. prow/lib.sh

                MAIN_CONFIG="${context}"
            fi
            export KUBECONFIG="${context}"
            kubectl delete ns istio-system-multi --ignore-not-found
            kubectl delete clusterrolebinding istio-multi-test --ignore-not-found
            kubectl create ns istio-system-multi
            kubectl create sa istio-multi-test -n istio-system-multi
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 8.1K bytes
    - Viewed (0)
Back to top