Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 130 for CRD (0.02 sec)

  1. operator/pkg/helm/helm.go

    	}
    	if chrt.Metadata.Name == "base" {
    		base, _ := valuesMap["base"].(map[string]any)
    		if enableIstioConfigCRDs, ok := base["enableIstioConfigCRDs"].(bool); ok && !enableIstioConfigCRDs {
    			crdFiles = []chart.CRD{}
    		}
    	}
    
    	// Create sorted array of keys to iterate over, to stabilize the order of the rendered templates
    	keys := make([]string, 0, len(files))
    	for k := range files {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/conversion_test.go

    ) []config.Config {
    	if err := validator.ValidateCustomResourceYAML(data, ignorer); err != nil {
    		t.Error(err)
    	}
    	c, _, err := crd.ParseInputs(data)
    	if err != nil {
    		t.Fatalf("failed to parse CRD: %v", err)
    	}
    	return insertDefaults(c)
    }
    
    // insertDefaults sets default values that would be present when reading from Kubernetes but not from
    // files
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 20:24:52 UTC 2024
    - 34.9K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/crd/conversion_test.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package crd
    
    import (
    	"encoding/json"
    	"testing"
    
    	gateway "sigs.k8s.io/gateway-api/apis/v1beta1"
    
    	"istio.io/api/meta/v1alpha1"
    	"istio.io/istio/pilot/test/mock"
    	"istio.io/istio/pkg/config"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 18:26:16 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/fake.go

    	meshconfig "istio.io/api/mesh/v1alpha1"
    	configaggregate "istio.io/istio/pilot/pkg/config/aggregate"
    	"istio.io/istio/pilot/pkg/config/kube/crd"
    	"istio.io/istio/pilot/pkg/config/memory"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/serviceregistry"
    	"istio.io/istio/pilot/pkg/serviceregistry/aggregate"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  5. pilot/pkg/bootstrap/configcontroller.go

    					NewPerRevisionLeaderElection(args.Namespace, args.PodName, leaderelection.GatewayDeploymentController, args.Revision, s.kubeClient).
    					AddRunFunction(func(leaderStop <-chan struct{}) {
    						// We can only run this if the Gateway CRD is created
    						if s.kubeClient.CrdWatcher().WaitForCRD(gvr.KubernetesGateway, leaderStop) {
    							tagWatcher := revisions.NewTagWatcher(s.kubeClient, args.Revision)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  6. tests/integration/telemetry/api/accesslogs_test.go

    	"k8s.io/apimachinery/pkg/util/rand"
    
    	"istio.io/istio/pkg/config/protocol"
    	"istio.io/istio/pkg/http/headers"
    	"istio.io/istio/pkg/test"
    	"istio.io/istio/pkg/test/framework"
    	"istio.io/istio/pkg/test/framework/components/crd"
    	"istio.io/istio/pkg/test/framework/components/echo"
    	"istio.io/istio/pkg/test/framework/components/echo/check"
    	"istio.io/istio/pkg/test/util/retry"
    )
    
    func TestAccessLogs(t *testing.T) {
    	framework.NewTest(t).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  7. tests/integration/telemetry/api/wasmplugin_test.go

    	"testing"
    	"time"
    
    	"k8s.io/apiserver/pkg/storage/names"
    
    	"istio.io/istio/pkg/config/protocol"
    	"istio.io/istio/pkg/http/headers"
    	"istio.io/istio/pkg/test/framework"
    	"istio.io/istio/pkg/test/framework/components/crd"
    	"istio.io/istio/pkg/test/framework/components/echo"
    	"istio.io/istio/pkg/test/framework/components/echo/check"
    	"istio.io/istio/pkg/test/framework/components/echo/match"
    	"istio.io/istio/pkg/test/framework/components/prometheus"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  8. pkg/kube/util.go

    	_ "k8s.io/client-go/plugin/pkg/client/auth" //  allow out of cluster authentication
    	"k8s.io/client-go/rest"
    	"k8s.io/client-go/tools/clientcmd"
    	"k8s.io/client-go/tools/clientcmd/api"
    
    	"istio.io/istio/pilot/pkg/config/kube/crd"
    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/util/sets"
    	istioversion "istio.io/istio/pkg/version"
    )
    
    var cronJobNameRegexp = regexp.MustCompile(`(.+)-\d{8,10}$`)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  9. pkg/kube/client.go

    	c.(*client).objectFilter = filter
    	return c
    }
    
    // EnableCrdWatcher enables the CRD watcher on the client.
    func EnableCrdWatcher(c Client) Client {
    	if NewCrdWatcher == nil {
    		panic("NewCrdWatcher is unset. Likely the crd watcher library is not imported anywhere")
    	}
    	if c.(*client).crdWatcher != nil {
    		panic("EnableCrdWatcher called twice for the same client")
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 39K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/test/integration/subresources_test.go

    	if err != nil {
    		t.Fatalf("unable to created crd %v: %v", noxuDefinition.Name, err)
    	}
    }
    
    func TestValidateOnlyStatus(t *testing.T) {
    	tearDown, apiExtensionClient, dynamicClient, err := fixtures.StartDefaultServerWithClients(t)
    	if err != nil {
    		t.Fatal(err)
    	}
    	defer tearDown()
    
    	// UpdateStatus should validate only status
    	// 1. create a crd with max value of .spec.num = 10 and .status.num = 10
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 12 17:35:34 UTC 2024
    - 33.2K bytes
    - Viewed (0)
Back to top