File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -23,15 +23,15 @@ describe('isK8sVersionAtLeast', () => {
2323} )
2424
2525describe ( 'isKnativeSupported' , ( ) => {
26- it ( 'returns true for Kubernetes 1.33 ' , ( ) => {
27- expect ( isKnativeSupported ( 'v1.33 .0' ) ) . toBe ( true )
26+ it ( 'returns true for Kubernetes 1.31 ' , ( ) => {
27+ expect ( isKnativeSupported ( 'v1.31 .0' ) ) . toBe ( true )
2828 } )
2929
30- it ( 'returns true for Kubernetes above 1.33 ' , ( ) => {
30+ it ( 'returns true for Kubernetes above 1.31 ' , ( ) => {
3131 expect ( isKnativeSupported ( 'v1.35.3' ) ) . toBe ( true )
3232 } )
3333
34- it ( 'returns false for Kubernetes below 1.33 ' , ( ) => {
35- expect ( isKnativeSupported ( 'v1.32 .0' ) ) . toBe ( false )
34+ it ( 'returns false for Kubernetes below 1.31 ' , ( ) => {
35+ expect ( isKnativeSupported ( 'v1.30 .0' ) ) . toBe ( false )
3636 } )
3737} )
Original file line number Diff line number Diff line change @@ -187,7 +187,7 @@ export const OBJECT_STORAGE_UI_EXCLUSIONS = json<string[]>({
187187} )
188188export const MIN_KNATIVE_K8S_VERSION = str ( {
189189 desc : 'Minimum Kubernetes version required for Knative support' ,
190- default : '1.33 .0' ,
190+ default : '1.31 .0' ,
191191} )
192192const { env } = process
193193export function cleanEnv < T > ( validators : { [ K in keyof T ] : ValidatorSpec < T [ K ] > } , options : CleanOptions < T > = { } ) {
You can’t perform that action at this time.
0 commit comments