Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 240 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. cluster/kubectl.sh

    # echo "-=-=-=-=-=-=-=-=-=-="
    # echo "NOTE:"
    # echo "kubectl.sh is deprecated and will be removed soon."
    # echo "please replace all usage with calls to the kubectl"
    # echo "binary and ensure that it is in your PATH."
    # echo ""
    # echo "Please see 'kubectl help config' for more details"
    # echo "about configuring kubectl for your cluster."
    # echo "-=-=-=-=-=-=-=-=-=-="
    
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 06 18:03:32 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  3. cmd/kubectl/kubectl.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package main
    
    import (
    	"k8s.io/component-base/cli"
    	"k8s.io/kubectl/pkg/cmd"
    	"k8s.io/kubectl/pkg/cmd/util"
    
    	// Import to initialize client auth plugins.
    	_ "k8s.io/client-go/plugin/pkg/client/auth"
    )
    
    func main() {
    	command := cmd.NewDefaultKubectlCommand()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 10 16:09:30 UTC 2022
    - 963 bytes
    - Viewed (0)
  4. cmd/kubectl-convert/kubectl-convert.go

    	"github.com/spf13/pflag"
    
    	"k8s.io/cli-runtime/pkg/genericclioptions"
    	"k8s.io/cli-runtime/pkg/genericiooptions"
    	"k8s.io/component-base/cli"
    	cmdutil "k8s.io/kubectl/pkg/cmd/util"
    	"k8s.io/kubernetes/pkg/kubectl/cmd/convert"
    )
    
    func main() {
    	flags := pflag.NewFlagSet("kubectl-convert", pflag.ExitOnError)
    	pflag.CommandLine = flags
    
    	kubeConfigFlags := genericclioptions.NewConfigFlags(true).WithDeprecatedPasswordFlag()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 05 14:05:23 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. istioctl/pkg/cli/kubectl_factory.go

    // limitations under the License.
    
    package cli
    
    import (
    	"k8s.io/apimachinery/pkg/api/meta"
    	"k8s.io/cli-runtime/pkg/resource"
    	openapiclient "k8s.io/client-go/openapi"
    	"k8s.io/kubectl/pkg/cmd/util"
    	"k8s.io/kubectl/pkg/util/openapi"
    	"k8s.io/kubectl/pkg/validation"
    
    	"istio.io/istio/pkg/kube"
    )
    
    type Factory struct {
    	kube.PartialFactory
    	full util.Factory
    }
    
    func (f Factory) NewBuilder() *resource.Builder {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 09 18:17:49 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. samples/helloworld/README.md

    ```bash
    kubectl apply -f helloworld.yaml
    ```
    
    Alternatively, you can run just one version at a time by first defining the service:
    
    ```bash
    kubectl apply -f helloworld.yaml -l service=helloworld
    ```
    
    and then deploying version v1, v2, or both:
    
    ```bash
    kubectl apply -f helloworld.yaml -l version=v1
    kubectl apply -f helloworld.yaml -l version=v2
    ```
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 27 18:28:55 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  7. cluster/addons/addon-manager/kube-addons-test.sh

    # cluster. A working Kubernetes cluster must be set up with kubectl configured.
    # To run with the released version of kubectl, use `make test`.
    
    set -o errexit
    set -o pipefail
    set -o nounset
    
    # Default kubectl to the test users installation if needed.
    KUBECTL_BIN="${KUBECTL_BIN:-kubectl}"
    
    # Disabling shellcheck following files as the full path would be required.
    # shellcheck disable=SC1091
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 25 02:46:18 UTC 2021
    - 9.3K bytes
    - Viewed (0)
  8. samples/security/spire/README.md

      $ kubectl delete role spire-server-role leader-election-role
      $ kubectl delete rolebinding spire-server-role-binding leader-election-role-binding
      $ kubectl delete ValidatingWebhookConfiguration spire-controller-manager-webhook
      $ kubectl delete csidriver csi.spiffe.io
      $ kubectl delete CustomResourceDefinition clusterspiffeids.spire.spiffe.io
      $ kubectl delete CustomResourceDefinition clusterfederatedtrustdomains.spire.spiffe.io
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 24 22:08:56 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  9. samples/helloworld/gateway-api/README.md

    ```bash
    kubectl get crd gateways.gateway.networking.k8s.io || \
      { kubectl kustomize "github.com/kubernetes-sigs/gateway-api/config/crd?ref=v0.5.0" | kubectl apply -f -; }
    ```
    
    Also make sure you are running two versions (v1 and v2) of the helloworld service:
    
    ```bash
    kubectl apply -f ../helloworld.yaml
    ```
    
    ## Configure the helloworld gateway
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 15 22:24:09 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  10. cluster/addons/addon-manager/CHANGELOG.md

     - Support extra `--prune-whitelist` resources in kube-addon-manager.
     - Update kubectl to v1.10.7.
    
    ### Version 8.6  (Tue February 20 2018 Zihong Zheng <******@****.***>)
     - Allow reconcile/ensure loop to work with resource under non-kube-system namespace.
     - Update kubectl to v1.9.3.
    
    ### Version 8.4  (Thu November 30 2017 zou nengren @zouyee)
     - Update kubectl to v1.8.4.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 15 01:39:45 UTC 2023
    - 4.4K bytes
    - Viewed (0)
Back to top