Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
66 changes: 33 additions & 33 deletions generate/zz_filesystem_generated.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pkg/functions/function_volumes.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ type EmptyDir struct {
// The maximum usage on memory medium EmptyDir would be the minimum value between
// the SizeLimit specified here and the sum of memory limits of all containers in a pod.
// The default is nil which means that the limit is undefined.
// More info: http://kubernetes.io/docs/user-guide/volumes#emptydir
// More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir
SizeLimit *string `yaml:"sizeLimit,omitempty"`
}

Expand Down
2 changes: 1 addition & 1 deletion schema/func_yaml-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@
},
"sizeLimit": {
"type": "string",
"description": "sizeLimit is the total amount of local storage required for this EmptyDir volume.\nThe size limit is also applicable for memory medium.\nThe maximum usage on memory medium EmptyDir would be the minimum value between\nthe SizeLimit specified here and the sum of memory limits of all containers in a pod.\nThe default is nil which means that the limit is undefined.\nMore info: http://kubernetes.io/docs/user-guide/volumes#emptydir"
"description": "sizeLimit is the total amount of local storage required for this EmptyDir volume.\nThe size limit is also applicable for memory medium.\nThe maximum usage on memory medium EmptyDir would be the minimum value between\nthe SizeLimit specified here and the sum of memory limits of all containers in a pod.\nThe default is nil which means that the limit is undefined.\nMore info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir"
}
},
"additionalProperties": false,
Expand Down
4 changes: 2 additions & 2 deletions templates/rust/cloudevents/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ curl -v -d '{"name": "Bootsy"}' \
-H'content-type: application/json' \
-H'ce-specversion: 1.0' \
-H'ce-id: 1' \
-H'ce-source: http://cloudevents.io' \
-H'ce-source: https://cloudevents.io' \
-H'ce-type: dev.knative.example' \
http://localhost:8080
```
Expand All @@ -64,7 +64,7 @@ curl -v -d '{"name": "Bootsy"}' \
-H'content-type: application/json' \
-H'ce-specversion: 1.0' \
-H'ce-id: 1' \
-H'ce-source: http://cloudevents.io' \
-H'ce-source: https://cloudevents.io' \
-H'ce-type: dev.knative.example' \
$(func info -o url)
```
Expand Down
Loading