Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 197 for Cloud (0.08 sec)

  1. docs/de/docs/deployment/index.md

    Abhängig von Ihrem spezifischen Anwendungsfall und den von Ihnen verwendeten Tools gibt es mehrere Möglichkeiten, das zu tun.
    
    Sie könnten mithilfe einer Kombination von Tools selbst **einen Server bereitstellen**, Sie könnten einen **Cloud-Dienst** nutzen, der einen Teil der Arbeit für Sie erledigt, oder andere mögliche Optionen.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:16:56 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. security/pkg/credentialfetcher/plugin/gce.go

    // limitations under the License.
    
    // This is Google plugin of credentialfetcher.
    
    package plugin
    
    import (
    	"context"
    	"fmt"
    	"os"
    	"strings"
    	"sync"
    	"time"
    
    	"cloud.google.com/go/compute/metadata"
    
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/security/pkg/util"
    )
    
    var gcecredLog = log.RegisterScope("gcecred", "GCE credential fetcher for istio agent")
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 13:56:46 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. pkg/kubeapiserver/admission/config.go

    	var cloudConfig []byte
    	if c.CloudConfigFile != "" {
    		var err error
    		cloudConfig, err = os.ReadFile(c.CloudConfigFile)
    		if err != nil {
    			klog.Fatalf("Error reading from cloud configuration file %s: %#v", c.CloudConfigFile, err)
    		}
    	}
    
    	return []admission.PluginInitializer{NewPluginInitializer(cloudConfig)}, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  4. README.md

    Kubernetes builds upon a decade and a half of experience at Google running
    production workloads at scale using a system called [Borg],
    combined with best-of-breed ideas and practices from the community.
    
    Kubernetes is hosted by the Cloud Native Computing Foundation ([CNCF]).
    If your company wants to help shape the evolution of
    technologies that are container-packaged, dynamically scheduled,
    and microservices-oriented, consider joining the CNCF.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:51 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. cmd/kube-controller-manager/app/options/options_test.go

    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	utilerrors "k8s.io/apimachinery/pkg/util/errors"
    	apiserveroptions "k8s.io/apiserver/pkg/server/options"
    	cpconfig "k8s.io/cloud-provider/config"
    	serviceconfig "k8s.io/cloud-provider/controllers/service/config"
    	cpoptions "k8s.io/cloud-provider/options"
    	componentbaseconfig "k8s.io/component-base/config"
    	"k8s.io/component-base/logs"
    	"k8s.io/component-base/metrics"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  6. go.work

    	./staging/src/k8s.io/apiextensions-apiserver
    	./staging/src/k8s.io/apimachinery
    	./staging/src/k8s.io/apiserver
    	./staging/src/k8s.io/cli-runtime
    	./staging/src/k8s.io/client-go
    	./staging/src/k8s.io/cloud-provider
    	./staging/src/k8s.io/cluster-bootstrap
    	./staging/src/k8s.io/code-generator
    	./staging/src/k8s.io/component-base
    	./staging/src/k8s.io/component-helpers
    	./staging/src/k8s.io/controller-manager
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  7. staging/publishing/import-restrictions.yaml

      - k8s.io/api
      - k8s.io/apimachinery
      - k8s.io/cluster-bootstrap
      - k8s.io/klog
    
    - baseImportPath: "./staging/src/k8s.io/cloud-provider"
      allowedImports:
      - k8s.io/api
      - k8s.io/apimachinery
      - k8s.io/apiserver
      - k8s.io/client-go
      - k8s.io/cloud-provider
      - k8s.io/component-base
      - k8s.io/controller-manager
      - k8s.io/component-helpers
      - k8s.io/klog
      - k8s.io/utils
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 13:13:22 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  8. cluster/gce/gci/configure-helper.sh

    #   CLOUD_CONFIG_MOUNT
    #   DOCKER_REGISTRY
    function start-cloud-controller-manager {
      echo "Start cloud provider controller-manager"
      setup-addon-manifests "addons" "cloud-controller-manager"
    
      create-kubeconfig "cloud-controller-manager" "${CLOUD_CONTROLLER_MANAGER_TOKEN}"
      echo "Preparing cloud provider controller-manager log file"
      prepare-log-file /var/log/cloud-controller-manager.log "${CLOUD_CONTROLLER_MANAGER_RUNASUSER:-0}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  9. cluster/gce/util.sh

        # create the cloud-pvl-admission cert with the correct groups
        echo '{"CN":"cloud-pvl-admission","hosts":[""],"key":{"algo":"rsa","size":2048}}' | "${CFSSL_BIN}" gencert -ca=pki/ca.crt -ca-key=pki/private/ca.key -config=ca-config.json - | "${CFSSLJSON_BIN}" -bare cloud-pvl-admission
        rm -f "cloud-pvl-admission.csr"
    
        # Make the cloud-pvl-admission server side certificates.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  10. samples/bookinfo/src/details/details.rb

          # W3C Trace Context. Compatible with OpenCensusAgent and Stackdriver Istio
          # configurations.
          'traceparent',
          'tracestate',
    
          # Cloud trace context. Compatible with OpenCensusAgent and Stackdriver Istio
          # configurations.
          'x-cloud-trace-context',
    
          # Grpc binary trace context. Compatible with OpenCensusAgent nad
          # Stackdriver Istio configurations.
          'grpc-trace-bin',
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 5.8K bytes
    - Viewed (0)
Back to top