-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Sane defaults and fixes for argo-events - Add sane defaults for 'kind' and 'apiVersion' where relevant - Make some types optional with None defaults - Also add package.dhall for argo/argo-events for consistency
- Loading branch information
Showing
56 changed files
with
212 additions
and
128 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 8 additions & 4 deletions
12
kubernetes/argo-events/defaults/io.argoproj.common.EventProtocol.dhall
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,11 @@ | ||
{ http = | ||
./io.argoproj.common.Http.dhall sha256:9bb9dcb5bf6f795291686f59383bcd01c8e79b87fc3fb63351d46dea100ac51b | ||
? ./io.argoproj.common.Http.dhall | ||
None | ||
( ../types/io.argoproj.common.Http.dhall sha256:008bbd365377a850574776abce886a072765a967b876e492c1c51afab13f2e19 | ||
? ../types/io.argoproj.common.Http.dhall | ||
) | ||
, nats = | ||
./io.argoproj.common.Nats.dhall sha256:70a1d83d7c4d9313eb7a93bc54e3f76f176fb419b3cd22d1efd05afe6502b852 | ||
? ./io.argoproj.common.Nats.dhall | ||
None | ||
( ../types/io.argoproj.common.Nats.dhall sha256:ffacddff3a7a785e889ac7c8f70baaeb41172d747f508ccd648239628aa65e3a | ||
? ../types/io.argoproj.common.Nats.dhall | ||
) | ||
} |
10 changes: 7 additions & 3 deletions
10
kubernetes/argo-events/defaults/io.argoproj.gateway.v1alpha1.Gateway.dhall
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,11 @@ | ||
{ spec = | ||
./io.argoproj.gateway.v1alpha1.GatewaySpec.dhall sha256:128ac3e5d79c499300f775399bc169d907dca8ac0fd2ef5abad81785e903e296 | ||
./io.argoproj.gateway.v1alpha1.GatewaySpec.dhall sha256:61e874bcd031ed04e2eec8184a6a8130fef3ca0687785a81dd9b92c0dd29c7a2 | ||
? ./io.argoproj.gateway.v1alpha1.GatewaySpec.dhall | ||
, status = | ||
./io.argoproj.gateway.v1alpha1.GatewayStatus.dhall sha256:ba4a4f9c5d5e54b27331ae0cd65231690118b797c19754adb6ba780ea3f02354 | ||
? ./io.argoproj.gateway.v1alpha1.GatewayStatus.dhall | ||
None | ||
( ../types/io.argoproj.gateway.v1alpha1.GatewayStatus.dhall sha256:f9c4c6302fdf182c86abc417040942701b3dd7d526105914793262d229398cf5 | ||
? ../types/io.argoproj.gateway.v1alpha1.GatewayStatus.dhall | ||
) | ||
, apiVersion = "argoproj.io/v1alpha1" | ||
, kind = "Gateway" | ||
} |
4 changes: 3 additions & 1 deletion
4
kubernetes/argo-events/defaults/io.argoproj.gateway.v1alpha1.GatewayList.dhall
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
{ items = | ||
[] : List | ||
( ./../types/io.argoproj.gateway.v1alpha1.Gateway.dhall sha256:099f71ccd7350834abc4cc7887e10fff3d192cc0598d6e73335606b11691c1d5 | ||
( ./../types/io.argoproj.gateway.v1alpha1.Gateway.dhall sha256:eaef66a79ed76dfd4b84726568eacbf64e00e445b12f31d73960f8865676309a | ||
? ./../types/io.argoproj.gateway.v1alpha1.Gateway.dhall | ||
) | ||
, apiVersion = "argoproj.io/v1alpha1" | ||
, kind = "GatewayList" | ||
} |
2 changes: 1 addition & 1 deletion
2
kubernetes/argo-events/defaults/io.argoproj.gateway.v1alpha1.GatewaySpec.dhall
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
kubernetes/argo-events/defaults/io.argoproj.sensor.v1alpha1.EventDependency.dhall
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ connected = None Bool | ||
, filters = | ||
None | ||
( ./../types/io.argoproj.sensor.v1alpha1.EventDependencyFilter.dhall sha256:9cf11d71d3ba3bb2567725359cc81265335fe484cd130fa212a8ed6619e79799 | ||
( ./../types/io.argoproj.sensor.v1alpha1.EventDependencyFilter.dhall sha256:c7475ea5bb14bb2091202e58125c71ef61cfb292d7e7c17a8a3966ebc747381c | ||
? ./../types/io.argoproj.sensor.v1alpha1.EventDependencyFilter.dhall | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 7 additions & 3 deletions
10
kubernetes/argo-events/defaults/io.argoproj.sensor.v1alpha1.Sensor.dhall
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,11 @@ | ||
{ spec = | ||
./io.argoproj.sensor.v1alpha1.SensorSpec.dhall sha256:6fbaa758420f8c09c0aadc40a2556d96c1614aa46e130a4ccfa71df4974281aa | ||
./io.argoproj.sensor.v1alpha1.SensorSpec.dhall sha256:e3462106e552d0d338751b4defdb77d8665d453623666d3f1a77e7d984f2adbf | ||
? ./io.argoproj.sensor.v1alpha1.SensorSpec.dhall | ||
, status = | ||
./io.argoproj.sensor.v1alpha1.SensorStatus.dhall sha256:59051ce560a6037df40185235ededfa2ac4ff759b9000b2a6e60912a2b1af9f7 | ||
? ./io.argoproj.sensor.v1alpha1.SensorStatus.dhall | ||
None | ||
( ../types/io.argoproj.sensor.v1alpha1.SensorStatus.dhall sha256:a7a5b93d43239663c5da523754c1a34d8e58172a934370427253c2a96dfc0acc | ||
? ../types/io.argoproj.sensor.v1alpha1.SensorStatus.dhall | ||
) | ||
, apiVersion = "argoproj.io/v1alpha1" | ||
, kind = "Sensor" | ||
} |
4 changes: 3 additions & 1 deletion
4
kubernetes/argo-events/defaults/io.argoproj.sensor.v1alpha1.SensorList.dhall
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
{ items = | ||
[] : List | ||
( ./../types/io.argoproj.sensor.v1alpha1.Sensor.dhall sha256:8c5385fad5951d3806d4efce6c5070ecb86e342a4b5cb4a3bc1a089c7435d4cd | ||
( ./../types/io.argoproj.sensor.v1alpha1.Sensor.dhall sha256:f661ba5469b568558a8666d06891732a7cae9c155c1dc31d5fca54fe5595120b | ||
? ./../types/io.argoproj.sensor.v1alpha1.Sensor.dhall | ||
) | ||
, apiVersion = "argoproj.io/v1alpha1" | ||
, kind = "SensorList" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 4 additions & 2 deletions
6
kubernetes/argo-events/defaults/io.argoproj.sensor.v1alpha1.Trigger.dhall
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ defaults = | ||
./defaults.dhall sha256:e1996555a811f29caa92ed7cbb863310fa9401d6bd46fbcfbef3eb162b53f67e | ||
? ./defaults.dhall | ||
, types = | ||
./types.dhall sha256:d8e9842869effec98be953da2b8307e79f7aea90791b38eca203ef5db7c7a0b5 | ||
? ./types.dhall | ||
, typesUnion = | ||
./typesUnion.dhall sha256:8c23e2f66b1ed58160fe5578128b5a15995c166d5eeed6820a452e611b6ee9fb | ||
? ./typesUnion.dhall | ||
, schemas = | ||
./schemas.dhall sha256:5e3a55acd379ed2892dee5959c4686353d9aeca00d24e636d5fbe56c0ed29c7f | ||
? ./schemas.dhall | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
kubernetes/argo-events/schemas/io.argoproj.common.EventProtocol.dhall
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ Type = | ||
./../types/io.argoproj.common.EventProtocol.dhall sha256:64208d24bb507038a09600980ab0f365954978cfe5fa8cecf92f01a7c01448f5 | ||
./../types/io.argoproj.common.EventProtocol.dhall sha256:d0232a19cbeb035060087cbf4924b412e02c6677b08e4223d24dccf412dd5ff5 | ||
? ./../types/io.argoproj.common.EventProtocol.dhall | ||
, default = | ||
./../defaults/io.argoproj.common.EventProtocol.dhall sha256:595717e9898866ffc565bbba97992241804679d9af1b2ae7240eb92edafb4377 | ||
./../defaults/io.argoproj.common.EventProtocol.dhall sha256:65823d7a1d46ecb511dc3e55892be011e726346b6b7a436258d783490b36ba5a | ||
? ./../defaults/io.argoproj.common.EventProtocol.dhall | ||
} |
Oops, something went wrong.