Skip to content
This repository was archived by the owner on Apr 4, 2024. It is now read-only.

Commit d52e56d

Browse files
authored
bump knative serving with 0.37.0 (#115)
* bump knative serving with 0.37.0 Signed-off-by: Kenny Leung <[email protected]> * bump memory for autoscaler Signed-off-by: Kenny Leung <[email protected]> * old net-istio Signed-off-by: Kenny Leung <[email protected]> * disable new health probes Signed-off-by: Kenny Leung <[email protected]> --------- Signed-off-by: Kenny Leung <[email protected]>
1 parent c82851f commit d52e56d

File tree

102 files changed

+2003
-793
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

102 files changed

+2003
-793
lines changed

cmd/serving/main.go

+2
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,8 @@ func main() {
3939

4040
ctx := informerfiltering.GetContextWithFilteringLabelSelector(signals.NewContext())
4141

42+
ctx = sharedmain.WithHealthProbesDisabled(ctx)
43+
4244
ctx = webhook.WithOptions(ctx, webhook.Options{
4345
ServiceName: "webhook",
4446
Port: 8443,

config/serving/200-imported/200-serving/100-resources/configuration.yaml

+53
Original file line numberDiff line numberDiff line change
@@ -707,6 +707,59 @@ spec:
707707
description: optional specify whether the ConfigMap or its keys must be defined
708708
type: boolean
709709
x-kubernetes-map-type: atomic
710+
downwardAPI:
711+
description: downwardAPI information about the downwardAPI data to project
712+
type: object
713+
properties:
714+
items:
715+
description: Items is a list of DownwardAPIVolume file
716+
type: array
717+
items:
718+
description: DownwardAPIVolumeFile represents information to create the file containing the pod field
719+
type: object
720+
required:
721+
- path
722+
properties:
723+
fieldRef:
724+
description: 'Required: Selects a field of the pod: only annotations, labels, name and namespace are supported.'
725+
type: object
726+
required:
727+
- fieldPath
728+
properties:
729+
apiVersion:
730+
description: Version of the schema the FieldPath is written in terms of, defaults to "v1".
731+
type: string
732+
fieldPath:
733+
description: Path of the field to select in the specified API version.
734+
type: string
735+
x-kubernetes-map-type: atomic
736+
mode:
737+
description: 'Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.'
738+
type: integer
739+
format: int32
740+
path:
741+
description: 'Required: Path is the relative path name of the file to be created. Must not be absolute or contain the ''..'' path. Must be utf-8 encoded. The first item of the relative path must not start with ''..'''
742+
type: string
743+
resourceFieldRef:
744+
description: 'Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.'
745+
type: object
746+
required:
747+
- resource
748+
properties:
749+
containerName:
750+
description: 'Container name: required for volumes, optional for env vars'
751+
type: string
752+
divisor:
753+
description: Specifies the output format of the exposed resources, defaults to "1"
754+
pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
755+
anyOf:
756+
- type: integer
757+
- type: string
758+
x-kubernetes-int-or-string: true
759+
resource:
760+
description: 'Required: resource to select'
761+
type: string
762+
x-kubernetes-map-type: atomic
710763
secret:
711764
description: secret information about the secret data to project
712765
type: object

config/serving/200-imported/200-serving/100-resources/domain-mapping.yaml

+18
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,9 @@ spec:
6464
- kind
6565
- name
6666
properties:
67+
address:
68+
description: Address points to a specific Address Name.
69+
type: string
6770
apiVersion:
6871
description: API version of the referent.
6972
type: string
@@ -96,6 +99,12 @@ spec:
9699
description: Address holds the information needed for a DomainMapping to be the target of an event.
97100
type: object
98101
properties:
102+
CACerts:
103+
description: CACerts is the Certification Authority (CA) certificates in PEM format according to https://www.rfc-editor.org/rfc/rfc7468.
104+
type: string
105+
name:
106+
description: Name is the name of the address.
107+
type: string
99108
url:
100109
type: string
101110
annotations:
@@ -169,6 +178,9 @@ spec:
169178
- kind
170179
- name
171180
properties:
181+
address:
182+
description: Address points to a specific Address Name.
183+
type: string
172184
apiVersion:
173185
description: API version of the referent.
174186
type: string
@@ -201,6 +213,12 @@ spec:
201213
description: Address holds the information needed for a DomainMapping to be the target of an event.
202214
type: object
203215
properties:
216+
CACerts:
217+
description: CACerts is the Certification Authority (CA) certificates in PEM format according to https://www.rfc-editor.org/rfc/rfc7468.
218+
type: string
219+
name:
220+
description: Name is the name of the address.
221+
type: string
204222
url:
205223
type: string
206224
annotations:

config/serving/200-imported/200-serving/100-resources/revision.yaml

+53
Original file line numberDiff line numberDiff line change
@@ -686,6 +686,59 @@ spec:
686686
description: optional specify whether the ConfigMap or its keys must be defined
687687
type: boolean
688688
x-kubernetes-map-type: atomic
689+
downwardAPI:
690+
description: downwardAPI information about the downwardAPI data to project
691+
type: object
692+
properties:
693+
items:
694+
description: Items is a list of DownwardAPIVolume file
695+
type: array
696+
items:
697+
description: DownwardAPIVolumeFile represents information to create the file containing the pod field
698+
type: object
699+
required:
700+
- path
701+
properties:
702+
fieldRef:
703+
description: 'Required: Selects a field of the pod: only annotations, labels, name and namespace are supported.'
704+
type: object
705+
required:
706+
- fieldPath
707+
properties:
708+
apiVersion:
709+
description: Version of the schema the FieldPath is written in terms of, defaults to "v1".
710+
type: string
711+
fieldPath:
712+
description: Path of the field to select in the specified API version.
713+
type: string
714+
x-kubernetes-map-type: atomic
715+
mode:
716+
description: 'Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.'
717+
type: integer
718+
format: int32
719+
path:
720+
description: 'Required: Path is the relative path name of the file to be created. Must not be absolute or contain the ''..'' path. Must be utf-8 encoded. The first item of the relative path must not start with ''..'''
721+
type: string
722+
resourceFieldRef:
723+
description: 'Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.'
724+
type: object
725+
required:
726+
- resource
727+
properties:
728+
containerName:
729+
description: 'Container name: required for volumes, optional for env vars'
730+
type: string
731+
divisor:
732+
description: Specifies the output format of the exposed resources, defaults to "1"
733+
pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
734+
anyOf:
735+
- type: integer
736+
- type: string
737+
x-kubernetes-int-or-string: true
738+
resource:
739+
description: 'Required: resource to select'
740+
type: string
741+
x-kubernetes-map-type: atomic
689742
secret:
690743
description: secret information about the secret data to project
691744
type: object

config/serving/200-imported/200-serving/100-resources/route.yaml

+6
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,12 @@ spec:
103103
description: Address holds the information needed for a Route to be the target of an event.
104104
type: object
105105
properties:
106+
CACerts:
107+
description: CACerts is the Certification Authority (CA) certificates in PEM format according to https://www.rfc-editor.org/rfc/rfc7468.
108+
type: string
109+
name:
110+
description: Name is the name of the address.
111+
type: string
106112
url:
107113
type: string
108114
annotations:

config/serving/200-imported/200-serving/100-resources/service.yaml

+59
Original file line numberDiff line numberDiff line change
@@ -711,6 +711,59 @@ spec:
711711
description: optional specify whether the ConfigMap or its keys must be defined
712712
type: boolean
713713
x-kubernetes-map-type: atomic
714+
downwardAPI:
715+
description: downwardAPI information about the downwardAPI data to project
716+
type: object
717+
properties:
718+
items:
719+
description: Items is a list of DownwardAPIVolume file
720+
type: array
721+
items:
722+
description: DownwardAPIVolumeFile represents information to create the file containing the pod field
723+
type: object
724+
required:
725+
- path
726+
properties:
727+
fieldRef:
728+
description: 'Required: Selects a field of the pod: only annotations, labels, name and namespace are supported.'
729+
type: object
730+
required:
731+
- fieldPath
732+
properties:
733+
apiVersion:
734+
description: Version of the schema the FieldPath is written in terms of, defaults to "v1".
735+
type: string
736+
fieldPath:
737+
description: Path of the field to select in the specified API version.
738+
type: string
739+
x-kubernetes-map-type: atomic
740+
mode:
741+
description: 'Optional: mode bits used to set permissions on this file, must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.'
742+
type: integer
743+
format: int32
744+
path:
745+
description: 'Required: Path is the relative path name of the file to be created. Must not be absolute or contain the ''..'' path. Must be utf-8 encoded. The first item of the relative path must not start with ''..'''
746+
type: string
747+
resourceFieldRef:
748+
description: 'Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.'
749+
type: object
750+
required:
751+
- resource
752+
properties:
753+
containerName:
754+
description: 'Container name: required for volumes, optional for env vars'
755+
type: string
756+
divisor:
757+
description: Specifies the output format of the exposed resources, defaults to "1"
758+
pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
759+
anyOf:
760+
- type: integer
761+
- type: string
762+
x-kubernetes-int-or-string: true
763+
resource:
764+
description: 'Required: resource to select'
765+
type: string
766+
x-kubernetes-map-type: atomic
714767
secret:
715768
description: secret information about the secret data to project
716769
type: object
@@ -826,6 +879,12 @@ spec:
826879
description: Address holds the information needed for a Route to be the target of an event.
827880
type: object
828881
properties:
882+
CACerts:
883+
description: CACerts is the Certification Authority (CA) certificates in PEM format according to https://www.rfc-editor.org/rfc/rfc7468.
884+
type: string
885+
name:
886+
description: Name is the name of the address.
887+
type: string
829888
url:
830889
type: string
831890
annotations:

0 commit comments

Comments
 (0)