Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 385 for sigs (0.79 sec)

  1. operator/cmd/operator/server.go

    	"sigs.k8s.io/controller-runtime/pkg/cache"
    	"sigs.k8s.io/controller-runtime/pkg/client/config"
    	"sigs.k8s.io/controller-runtime/pkg/manager"
    	"sigs.k8s.io/controller-runtime/pkg/manager/signals"
    	ctrlmetrics "sigs.k8s.io/controller-runtime/pkg/metrics"
    	metricsserver "sigs.k8s.io/controller-runtime/pkg/metrics/server"
    
    	root "istio.io/istio/operator/cmd/mesh"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 30 21:09:08 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/supported_features.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package gateway
    
    import (
    	k8sv1 "sigs.k8s.io/gateway-api/apis/v1"
    	"sigs.k8s.io/gateway-api/pkg/features"
    
    	"istio.io/istio/pkg/util/sets"
    )
    
    var SupportedFeatures = features.AllFeatures
    
    var gatewaySupportedFeatures = getSupportedFeatures()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:42 UTC 2024
    - 1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/go.mod

    	gopkg.in/inf.v0 v0.9.1
    	k8s.io/klog/v2 v2.120.1
    	k8s.io/kube-openapi v0.0.0-20240228011516-70dd3763d340
    	k8s.io/utils v0.0.0-20230726121419-3b25d923346b
    	sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd
    	sigs.k8s.io/structured-merge-diff/v4 v4.4.1
    	sigs.k8s.io/yaml v1.4.0
    )
    
    require (
    	github.com/go-logr/logr v1.4.1 // indirect
    	github.com/go-openapi/jsonpointer v0.19.6 // indirect
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 14:02:04 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/cli-runtime/pkg/resource/kustomizevisitor.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package resource
    
    import (
    	"bytes"
    
    	"sigs.k8s.io/kustomize/api/krusty"
    	"sigs.k8s.io/kustomize/kyaml/filesys"
    )
    
    // KustomizeVisitor handles kustomization.yaml files.
    type KustomizeVisitor struct {
    	mapper *mapper
    	schema ContentValidator
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 16:40:28 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. bin/update_crds.sh

    fi
    if [ -z "${GATEWAY_VERSION}" ]; then
      fail "Unable to retrieve the gateway-api version from go.mod file. Not updating the CRD file.";
    fi
    
    echo "# Generated with \`kubectl kustomize \"https://github.com/kubernetes-sigs/gateway-api/config/crd/experimental?ref=${GATEWAY_VERSION}\"\`" > "${API_TMP}/gateway-api-crd.yaml"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 14:28:27 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. samples/jwt-server/src/main.go

    		go s.runHTTPS(fmt.Sprintf(":%s", *httpsPort))
    	}
    	defer s.stop()
    
    	// Wait for the process to be shutdown.
    	sigs := make(chan os.Signal, 1)
    	signal.Notify(sigs, syscall.SIGINT, syscall.SIGTERM)
    	<-sigs
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 16 23:56:50 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  7. releasenotes/notes/gateway-infra-gep.yaml

    area: traffic-management
    # releaseNotes is a markdown listing of any user facing changes. This will appear in the
    # release notes.
    releaseNotes:
    - |
      **Added** support for [In-Cluster Gateway Deployments](https://gateway-api.sigs.k8s.io/geps/gep-1762/).
      Deployment also now has both `istio.io/gateway-name` and `gateway.networking.k8s.io/gateway-name` labels
      just like the Pods and Services.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 05 21:52:53 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. tests/fuzz/helm_reconciler_fuzzer.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package fuzz
    
    import (
    	fuzz "github.com/AdaLogics/go-fuzz-headers"
    	"sigs.k8s.io/controller-runtime/pkg/client"
    	"sigs.k8s.io/controller-runtime/pkg/client/fake"
    
    	"istio.io/istio/operator/pkg/helmreconciler"
    	"istio.io/istio/operator/pkg/name"
    	"istio.io/istio/operator/pkg/object"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 12 17:12:54 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. common/config/license-lint.yml

    # Apache 2.0
    #   github.com/ghodss/yaml: MIT / BSD-3
    #   github.com/gogo/protobuf: BSD-3
    #   github.com/jmespath/go-jmespath: Apache 2.0
    #   sigs.k8s.io/yaml: MIT / BSD-3
    - github.com/tektoncd/pipeline
    
    # MIT: https://github.com/kubernetes-sigs/yaml/blob/master/LICENSE
    - sigs.k8s.io/yaml
    
    # https://github.com/go-errors/errors/blob/master/LICENSE.MIT
    - github.com/go-errors/errors
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 25 19:26:20 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  10. pkg/config/schema/kubetypes/resources.gen.go

    	k8sioapiextensionsapiserverpkgapisapiextensionsv1 "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1"
    	sigsk8siogatewayapiapisv1 "sigs.k8s.io/gateway-api/apis/v1"
    	sigsk8siogatewayapiapisv1alpha2 "sigs.k8s.io/gateway-api/apis/v1alpha2"
    	sigsk8siogatewayapiapisv1beta1 "sigs.k8s.io/gateway-api/apis/v1beta1"
    
    	istioioapiextensionsv1alpha1 "istio.io/api/extensions/v1alpha1"
    	istioioapimeshv1alpha1 "istio.io/api/mesh/v1alpha1"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 16:38:40 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top