You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: 'PingSource describes an event source with a fixed payload produced on a specified cron schedule.'
937
+
properties:
938
+
spec:
939
+
type: object
940
+
description: 'PingSourceSpec defines the desired state of the PingSource (from the client).'
941
+
properties:
942
+
ceOverrides:
943
+
description: 'CloudEventOverrides defines overrides to control the output format and modifications of the event sent to the sink.'
944
+
type: object
945
+
properties:
946
+
extensions:
947
+
description: 'Extensions specify what attribute are added or overridden on the outbound event. Each `Extensions` key-value pair are set on the event as an attribute extension independently.'
948
+
type: object
949
+
additionalProperties:
950
+
type: string
951
+
x-kubernetes-preserve-unknown-fields: true
952
+
contentType:
953
+
description: 'ContentType is the media type of `data` or `dataBase64`. Default is empty.'
954
+
type: string
955
+
data:
956
+
description: 'Data is data used as the body of the event posted to the sink. Default is empty. Mutually exclusive with `dataBase64`.'
957
+
type: string
958
+
dataBase64:
959
+
description: ""DataBase64 is the base64-encoded string of the actual event's body posted to the sink. Default is empty. Mutually exclusive with `data`.""
960
+
type: string
961
+
schedule:
962
+
description: 'Schedule is the cron schedule. Defaults to `* * * * *`.'
963
+
type: string
964
+
sink:
965
+
description: 'Sink is a reference to an object that will resolve to a uri to use as the sink.'
966
+
type: object
967
+
properties:
968
+
ref:
969
+
description: 'Ref points to an Addressable.'
970
+
type: object
971
+
properties:
972
+
apiVersion:
973
+
description: 'API version of the referent.'
974
+
type: string
975
+
kind:
976
+
description: 'Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
977
+
type: string
978
+
name:
979
+
description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
980
+
type: string
981
+
namespace:
982
+
description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/ This is optional field, it gets defaulted to the object holding it if left out.'
983
+
type: string
984
+
uri:
985
+
description: 'URI can be an absolute URL(non-empty scheme and non-empty host) pointing to the target or a relative URI. Relative URIs will be resolved using the base URI retrieved from Ref.'
986
+
type: string
987
+
timezone:
988
+
description: 'Timezone modifies the actual time relative to the specified timezone. Defaults to the system time zone. More general information about time zones: https://www.iana.org/time-zones List of valid timezone values: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones'
989
+
type: string
990
+
status:
991
+
type: object
992
+
description: 'PingSourceStatus defines the observed state of PingSource (from the controller).'
993
+
properties:
994
+
annotations:
995
+
description: 'Annotations is additional Status fields for the Resource to save some additional State as well as convey more information to the user. This is roughly akin to Annotations on any k8s resource, just the reconciler conveying richer information outwards.'
996
+
type: object
997
+
x-kubernetes-preserve-unknown-fields: true
998
+
ceAttributes:
999
+
description: 'CloudEventAttributes are the specific attributes that the Source uses as part of its CloudEvents.'
1000
+
type: array
1001
+
items:
1002
+
type: object
1003
+
properties:
1004
+
source:
1005
+
description: 'Source is the CloudEvents source attribute.'
1006
+
type: string
1007
+
type:
1008
+
description: 'Type refers to the CloudEvent type attribute.'
1009
+
type: string
1010
+
conditions:
1011
+
description: 'Conditions the latest available observations of a resource''s current state.'
1012
+
type: array
1013
+
items:
1014
+
type: object
1015
+
required:
1016
+
- type
1017
+
- status
1018
+
properties:
1019
+
lastTransitionTime:
1020
+
description: 'LastTransitionTime is the last time the condition transitioned from one status to another. We use VolatileTime in place of metav1.Time to exclude this from creating equality.Semantic differences (all other things held constant).'
1021
+
type: string
1022
+
message:
1023
+
description: 'A human readable message indicating details about the transition.'
1024
+
type: string
1025
+
reason:
1026
+
description: 'The reason for the condition''s last transition.'
1027
+
type: string
1028
+
severity:
1029
+
description: 'Severity with which to treat failures of this type of condition. When this is not specified, it defaults to Error.'
1030
+
type: string
1031
+
status:
1032
+
description: 'Status of the condition, one of True, False, Unknown.'
1033
+
type: string
1034
+
type:
1035
+
description: 'Type of condition.'
1036
+
type: string
1037
+
observedGeneration:
1038
+
description: 'ObservedGeneration is the ""Generation"" of the Service that was last processed by the controller.'
1039
+
type: integer
1040
+
format: int64
1041
+
sinkUri:
1042
+
description: 'SinkURI is the current active sink URI that has been configured for the Source.'
0 commit comments