Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for DefaultIngressClass (0.41 sec)

  1. pkg/kubeapiserver/options/plugins.go

    	ctbattest.PluginName,                    // ClusterTrustBundleAttest
    	certsubjectrestriction.PluginName,       // CertificateSubjectRestriction
    	defaultingressclass.PluginName,          // DefaultIngressClass
    	denyserviceexternalips.PluginName,       // DenyServiceExternalIPs
    
    	// new admission plugins should generally be inserted above here
    	// webhook, resourcequota, and deny plugins must go at the end
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 17:20:46 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  2. plugin/pkg/admission/network/defaultingressclass/admission.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 defaultingressclass
    
    import (
    	"context"
    	"fmt"
    	"io"
    	"sort"
    
    	networkingv1 "k8s.io/api/networking/v1"
    	networkingv1beta1 "k8s.io/api/networking/v1beta1"
    	"k8s.io/apimachinery/pkg/api/errors"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 11 01:48:45 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  3. plugin/pkg/admission/network/defaultingressclass/admission_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 defaultingressclass
    
    import (
    	"context"
    	"reflect"
    	"testing"
    	"time"
    
    	networkingv1 "k8s.io/api/networking/v1"
    	networkingv1beta1 "k8s.io/api/networking/v1beta1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 04 13:12:32 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.25.md

    - In the event that more than one IngressClass is designated "default", the DefaultIngressClass admission controller will choose one rather than fail. ([#110974](https://github.com/kubernetes/kubernetes/pull/110974), [@kidddddddddddddddddddddd](https://github.com/kidddddddddddddddddddddd)) [SIG Network]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 09:23:20 UTC 2024
    - 419.1K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.19.md

    - The `DefaultIngressClass` feature is now GA. The `--feature-gate` parameter will be removed in 1.20. ([#91957](https://github.com/kubernetes/kubernetes/pull/91957), [@cmluciano](https://github.com/cmluciano)) [SIG API Machinery, Apps, Network and Testing]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 05 05:42:32 UTC 2022
    - 489.7K bytes
    - Viewed (0)
Back to top