Skip to content

Commit aab1fe4

Browse files
committed
📂 Add OpenShift specific files
1 parent 4e9fc09 commit aab1fe4

Some content is hidden

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

42 files changed

+7998
-6766
lines changed

.github/workflows/test-e2e-oncluster-runtime.yaml

-70
This file was deleted.

.github/workflows/test-e2e-oncluster.yaml

-57
This file was deleted.

.syft.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
select-catalogers:
2+
- -github-actions-usage-cataloger

OWNERS

+8-7
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
# The OWNERS file is used by prow to automatically merge approved PRs.
22

33
approvers:
4-
- technical-oversight-committee
5-
- knative-release-leads
6-
- client-writers
7-
- func-writers
8-
- functions-wg-leads
4+
- creydr
5+
- dsimansk
6+
- lkingland
7+
- matejvasek
8+
- mgencur
9+
- pierdipi
10+
- gauron99
911

1012
reviewers:
11-
- client-writers
12-
- func-reviewers
13+
- jrangelramos
1314

cmd/tkn_tasks.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Installation: func tkn-tasks | kubectl apply -f -
1818
`,
1919
Hidden: true,
2020
RunE: func(cmd *cobra.Command, args []string) error {
21-
_, err := fmt.Fprintln(cmd.OutOrStdout(), tekton.GetClusterTasks())
21+
_, err := fmt.Fprintln(cmd.OutOrStdout(), tekton.GetClusterTasks()+"\n---\n"+tekton.GetDevConsolePipelines())
2222
return err
2323
},
2424
}

docs/reference/func_build.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ func build
5858

5959
```
6060
--build-timestamp Use the actual time as the created time for the docker image. This is only useful for buildpacks builder.
61-
-b, --builder string Builder to use when creating the function's container. Currently supported builders are "host", "pack" and "s2i". ($FUNC_BUILDER) (default "pack")
61+
-b, --builder string Builder to use when creating the function's container. Currently supported builders are "host", "pack" and "s2i". ($FUNC_BUILDER) (default "s2i")
6262
--builder-image string Specify a custom builder image for use by the builder other than its default. ($FUNC_BUILDER_IMAGE)
6363
-c, --confirm Prompt to confirm options interactively ($FUNC_CONFIRM)
6464
-h, --help help for build

docs/reference/func_config_git_set.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ func config git set
1717
### Options
1818

1919
```
20-
-b, --builder string Builder to use when creating the function's container. Currently supported builders are "host", "pack" and "s2i". (default "pack")
20+
-b, --builder string Builder to use when creating the function's container. Currently supported builders are "host", "pack" and "s2i". (default "s2i")
2121
--builder-image string Specify a custom builder image for use by the builder other than its default. ($FUNC_BUILDER_IMAGE)
2222
--config-cluster Configure cluster resources (credentials and config on the cluster).
2323
--config-local Configure local resources (pipeline templates).

docs/reference/func_deploy.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ func deploy
115115
```
116116
--build string[="true"] Build the function. [auto|true|false]. ($FUNC_BUILD) (default "auto")
117117
--build-timestamp Use the actual time as the created time for the docker image. This is only useful for buildpacks builder.
118-
-b, --builder string Builder to use when creating the function's container. Currently supported builders are "host", "pack" and "s2i". (default "pack")
118+
-b, --builder string Builder to use when creating the function's container. Currently supported builders are "host", "pack" and "s2i". (default "s2i")
119119
--builder-image string Specify a custom builder image for use by the builder other than its default. ($FUNC_BUILDER_IMAGE)
120120
-c, --confirm Prompt to confirm options interactively ($FUNC_CONFIRM)
121121
--domain string Domain to use for the function's route. Cluster must be configured with domain matching for the given domain (ignored if unrecognized) ($FUNC_DOMAIN)

docs/reference/func_run.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ func run
6161

6262
```
6363
--build string[="true"] Build the function. [auto|true|false]. ($FUNC_BUILD) (default "auto")
64-
-b, --builder string Builder to use when creating the function's container. Currently supported builders are "host", "pack" and "s2i". (default "pack")
64+
-b, --builder string Builder to use when creating the function's container. Currently supported builders are "host", "pack" and "s2i". (default "s2i")
6565
--builder-image string Specify a custom builder image for use by the builder other than its default. ($FUNC_BUILDER_IMAGE)
6666
-c, --confirm Prompt to confirm options interactively ($FUNC_CONFIRM)
6767
-t, --container Run the function in a container. ($FUNC_CONTAINER) (default true)

0 commit comments

Comments
 (0)