Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 106 for addRows (0.17 sec)

  1. istioctl/pkg/writer/table/writer_test.go

    		o := obj.(testObject)
    		return Row{
    			Cells: []Cell{
    				NewCell(o.name),
    				NewCell(o.namespace, color.FgGreen),
    				NewCell(o.version),
    			},
    		}
    	})
    	w.AddRow(newTestObject("foo", "bar", "1.0"))
    	w.AddRow(newTestObject("baz", "qux", "2.0"))
    	w.AddRow(newTestObject("qux", "quux", "3"))
    	w.Flush()
    	expected := "NAME  NAMESPACE      VERSION\n" +
    		"foo   \x1b[32mbar\x1b[0m            1.0\n" +
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Oct 08 04:41:42 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  2. cluster/addons/addon-manager/Dockerfile

    # limitations under the License.
    
    ARG BASEIMAGE
    
    FROM ${BASEIMAGE}
    
    RUN clean-install bash
    
    ADD kube-addons.sh /opt/
    ADD kube-addons-main.sh /opt/
    ADD kubectl /usr/local/bin/
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 12 11:11:56 UTC 2021
    - 763 bytes
    - Viewed (0)
  3. cluster/addons/addon-manager/Makefile

    test:
    	cp ./* $(TEMP_DIR)
    	curl -sSL --retry 5 https://dl.k8s.io/release/$(KUBECTL_VERSION)/bin/linux/$(ARCH)/kubectl > $(TEMP_DIR)/kubectl
    	chmod a+rx $(TEMP_DIR)/kube-addons.sh $(TEMP_DIR)/kube-addons-test.sh $(TEMP_DIR)/kubectl
    	cd $(TEMP_DIR) && KUBECTL_BIN=$(TEMP_DIR)/kubectl ./kube-addons-test.sh
    
    clean:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 15 01:39:45 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. samples/ambient-argo/istio/extras.yaml

    apiVersion: argoproj.io/v1alpha1
    kind: Application
    metadata:
      name: istio-addons
      namespace: argocd
      finalizers:
        - resources-finalizer.argocd.argoproj.io
    spec:
      project: default
      source:
        repoURL: 'https://github.com/istio/istio.git'
        targetRevision: HEAD
        path: samples/addons
        directory:
          exclude: loki.yaml
      destination:
        name: ambient-cluster
        namespace: istio-system
      syncPolicy:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 519 bytes
    - Viewed (0)
  5. releasenotes/notes/addon-remove.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: telemetry
    issue:
    - 22762
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 11 21:20:58 UTC 2020
    - 344 bytes
    - Viewed (0)
  6. samples/addons/README.md

    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
    
    [Prometheus](https://prometheus.io/) is an open source monitoring system and time series database.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 27 18:28:55 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  7. cluster/gce/manifests/kube-addon-manager.yaml

        command:
        - /bin/bash
        - -c
        - exec /opt/kube-addons-main.sh 1>>/var/log/kube-addon-manager.log 2>&1
        resources:
          requests:
            cpu: 5m
            memory: 50Mi
        volumeMounts:
        - mountPath: /etc/kubernetes/
          name: addons
          readOnly: true
        - mountPath: /var/log
          name: varlog
          readOnly: false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 21 03:09:15 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  8. operator/pkg/apis/istio/v1alpha1/validation/validation.go

    		{"Values.grafana.enabled", "the samples/addons/ deployments", false},
    		{"Values.tracing.enabled", "the samples/addons/ deployments", false},
    		{"Values.kiali.enabled", "the samples/addons/ deployments", false},
    		{"Values.prometheus.enabled", "the samples/addons/ deployments", false},
    		{"AddonComponents.grafana.Enabled", "the samples/addons/ deployments", false},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 20:02:28 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  9. samples/cicd/skaffold/skaffold.yaml

    # Installation options & modules 
    # ------------------------------------------------ #
    # istio              - `skaffold run -m istiod`    
    # ingress            - `skaffold run -m ingress`
    # Addons:
    #   - kiali          - `skaffold run -m kiali`
    #   - prometheus     - `skaffold run -m prometheus`
    # Demos: 
    #   - bookinfo       - `skaffold run -m bookinfo`
    # ------------------------------------------------ #
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 17 12:12:08 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  10. cluster/addons/README.md

    More details could be found in [addon-manager/README.md](addon-manager/README.md).
    
    ## Cooperating Horizontal / Vertical Auto-Scaling with "reconcile class addons"
    
    "Reconcile" class addons will be periodically reconciled to the original state given
    by the initial config. In order to make Horizontal / Vertical Auto-scaling functional,
    the related fields in config should be left unset. More specifically, leave `replicas`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 13 20:03:37 UTC 2020
    - 1.6K bytes
    - Viewed (0)
Back to top