Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 523 for kubeutil (0.36 sec)

  1. samples/external/README.md

    ## Try it out
    
    After an operator runs `kubectl create -f aptget.yaml` pods will be able to
    succeed with `apt-get update` and `apt-get install`.
    
    After an operator runs `kubectl create -f github.yaml` pods will be able to
    succeed with `git clone https://github.com/fortio/fortio.git`.
    
    Running `kubectl create -f pypi.yaml` allows pods to update Python libraries using `pip`.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 27 18:28:55 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. build/server-image/kubectl/Dockerfile

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # Dockerfile used for the kubectl image.
    
    ARG BASEIMAGE
    ARG BINARY
    
    
    FROM "${BASEIMAGE}"
    COPY ${BINARY} /bin/
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 28 18:27:17 UTC 2023
    - 726 bytes
    - Viewed (0)
  3. samples/addons/README.md

    addon.
    
    ## Getting started
    
    To quickly deploy all addons:
    
    ```shell script
    kubectl apply -f samples/addons
    ```
    
    Alternatively, you can deploy individual addons:
    
    ```shell script
    kubectl apply -f samples/addons/prometheus.yaml
    ```
    
    ## Addons
    
    ### Prometheus
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 27 18:28:55 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  4. cluster/addons/dns/kube-dns/README.md

    [dns-horizontal-autoscaler](../../dns-horizontal-autoscaler/)
    is not enabled, you may need to manually scale kube-dns Deployment.
    
    Please use below `kubectl scale` command to scale:
    ```
    kubectl --namespace=kube-system scale deployment kube-dns --replicas=<NUM_YOU_WANT>
    ```
    
    Do not use `kubectl edit` to modify kube-dns Deployment object if it is
    controlled by [Addon Manager](../../addon-manager/). Otherwise the modifications
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 13 20:03:37 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  5. cluster/gce/upgrade.sh

      local -r endtime=$(date -ud "3 minute" +%s)
      until [[ $("${KUBE_ROOT}"/cluster/kubectl.sh -n kube-system get deployment coredns -o=jsonpath='{$.metadata.resourceVersion}') -ne ${COREDNS_DEPLOY_RESOURCE_VERSION} ]] || [[ $(date -u +%s) -gt $endtime ]]; do
         sleep 1
      done
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  6. istioctl/pkg/cli/mock_test.go

    // limitations under the License.
    
    package cli
    
    import (
    	"net/http"
    
    	"k8s.io/cli-runtime/pkg/resource"
    	"k8s.io/client-go/rest/fake"
    	cmdtesting "k8s.io/kubectl/pkg/cmd/testing"
    	"k8s.io/kubectl/pkg/cmd/util"
    
    	"istio.io/istio/pkg/kube"
    )
    
    func init() {
    	MakeKubeFactory = func(k kube.CLIClient) util.Factory {
    		tf := cmdtesting.NewTestFactory()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.3.md

    kubectl get thirdpartyresource --all-namespaces -o yaml > tprs.yaml
    kubectl delete -f tprs.yaml
    
    After upgrading to 1.3.0, re-register the third party resource objects at the root scope (using a 1.3 server and client):
    
    kubectl create -f tprs.yaml
    
    #### kubectl
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 84K bytes
    - Viewed (0)
  8. docs/tls/kubernetes/README.md

    below.
    
    Then type
    
    ```sh
    kubectl create secret generic tls-ssl-minio --from-file=path/to/private.key --from-file=path/to/public.crt
    ```
    
    Cross check if the secret is created successfully using
    
    ```sh
    kubectl get secrets
    ```
    
    You should see a secret named `tls-ssl-minio`.
    
    ## 3. Update deployment yaml file
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 3K bytes
    - Viewed (0)
  9. hack/verify-cli-conventions.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # This script checks the description format of help message of kubectl command
    # is valid or not. And this checking is done for all kubectl sub-commands.
    # Usage: `hack/verify-cli-conventions.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:32 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  10. samples/kind-lb/setupkind.sh

    ${CONFIG}
    EOF
    else
      cat << EOF | kind create cluster "${K8SRELEASE}" --config -
    ${CONFIG}
    EOF
    fi
    
    # Setup cluster context
    kubectl cluster-info --context "kind-${CLUSTERNAME}"
    
    # Setup metallb using v0.13.11
    kubectl apply -f https://raw.githubusercontent.com/metallb/metallb/v0.13.11/config/manifests/metallb-native.yaml
    
    addrName="IPAddress"
    ipv4Prefix=""
    ipv6Prefix=""
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 02 19:08:19 UTC 2023
    - 7.7K bytes
    - Viewed (0)
Back to top