Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 106 for addRows (0.13 sec)

  1. cluster/addons/metadata-proxy/gce/metadata-proxy.yaml

                memory: "20Mi"
                cpu: "2m"
              limits:
                memory: "20Mi"
                cpu: "2m"
            command:
              - /monitor
              - --stackdriver-prefix={{ prometheus_to_sd_prefix }}/addons
              - --api-override={{ prometheus_to_sd_endpoint }}
              - --source=metadata_proxy:http://127.0.0.1:989?whitelisted=request_count
              - --pod-id=$(POD_NAME)
              - --namespace-id=$(POD_NAMESPACE)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/phases/init/addons_test.go

    				options.DryRun,
    			},
    		},
    	}
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			got := getAddonPhaseFlags(tt.name)
    			if ok := reflect.DeepEqual(got, tt.want); !ok {
    				t.Errorf("phase init addons.getAddonPhaseFlags() = %v, want %v", got, tt.want)
    			}
    		})
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 08 07:35:17 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. hack/local-up-cluster.sh

            ${KUBECTL} --kubeconfig="${CERT_DIR}/admin.kubeconfig" apply -f "${KUBE_ROOT}/cluster/addons/volumesnapshots/crd/snapshot.storage.k8s.io_volumesnapshotclasses.yaml"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/phases/addons/proxy/proxy.go

    	KubeProxyServiceAccountName = "kube-proxy"
    
    	// KubeProxyConfigMapRoleName sets the name of ClusterRole for ConfigMap
    	KubeProxyConfigMapRoleName = "kube-proxy"
    )
    
    // EnsureProxyAddon creates the kube-proxy addons
    func EnsureProxyAddon(cfg *kubeadmapi.ClusterConfiguration, localEndpoint *kubeadmapi.APIEndpoint, client clientset.Interface, out io.Writer, printManifest bool) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 13:23:44 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/phases/upgrade/preflight.go

    	"k8s.io/apimachinery/pkg/util/sets"
    	clientset "k8s.io/client-go/kubernetes"
    	"k8s.io/klog/v2"
    
    	kubeadmconstants "k8s.io/kubernetes/cmd/kubeadm/app/constants"
    	"k8s.io/kubernetes/cmd/kubeadm/app/phases/addons/dns"
    	"k8s.io/kubernetes/cmd/kubeadm/app/preflight"
    )
    
    // CoreDNSCheck validates installed kubelet version
    type CoreDNSCheck struct {
    	name   string
    	client clientset.Interface
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 25 13:53:28 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_workloadentry_test.go

    	s.assertWorkloads(t, s.addrXdsName("10.0.0.1"), workloadapi.WorkloadStatus_HEALTHY)
    	s.assertEvent(t, s.wleXdsName("name2"), s.svcXdsName("svc1"))
    
    	// Add a waypoint proxy pod for namespace
    	s.addPods(t, "127.0.0.200", "waypoint-ns-pod", "namespace-wide",
    		map[string]string{
    			constants.ManagedGatewayLabel: constants.ManagedGatewayMeshControllerLabel,
    			constants.GatewayNameLabel:    "waypoint-ns",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  7. cluster/addons/dns-horizontal-autoscaler/dns-horizontal-autoscaler.yaml

                    memory: "10Mi"
            command:
              - /cluster-proportional-autoscaler
              - --namespace=kube-system
              - --configmap=kube-dns-autoscaler
              # Should keep target in sync with cluster/addons/dns/kube-dns.yaml.base
              - --target={{.Target}}
              # When cluster is using large nodes(with more cores), "coresPerReplica" should dominate.
              # If using small nodes, "nodesPerReplica" should dominate.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  8. cluster/addons/fluentd-gcp/fluentd-gcp-ds.yaml

          - name: prometheus-to-sd-exporter
            image: gke.gcr.io/prometheus-to-sd:v0.11.1-gke.1
            command:
              - /monitor
              - --stackdriver-prefix={{ prometheus_to_sd_prefix }}/addons
              - --api-override={{ prometheus_to_sd_endpoint }}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 27 17:54:10 UTC 2021
    - 4.1K bytes
    - Viewed (0)
  9. CODEOWNERS

    /releasenotes/                                                   @istio/wg-test-and-release-maintainers
    /releasenotes/notes
    /samples/                                                        @istio/wg-docs-maintainers-english
    /samples/addons                                                  @istio/wg-policies-and-telemetry-maintainers @istio/wg-environments-maintainers
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 19:22:33 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  10. istioctl/pkg/writer/table/writer.go

    func (c *ColoredTableWriter) AddHeader(names ...string) {
    	cells := make([]Cell, 0)
    	for _, name := range names {
    		cells = append(cells, NewCell(name))
    	}
    	c.header = Row{Cells: cells}
    }
    
    func (c *ColoredTableWriter) AddRow(obj interface{}) {
    	c.rows = append(c.rows, c.addRowFunc(obj))
    }
    
    func (c *ColoredTableWriter) Flush() {
    	output := c.getTableOutput(c.rows)
    	if len(output) == 0 {
    		return
    	}
    	sep := getMaxWidths(output)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Oct 08 04:41:42 UTC 2022
    - 2.8K bytes
    - Viewed (0)
Back to top