Skip to content

Commit d1cad46

Browse files
committed
📂 Update OpenShift specific files
1 parent f889e2c commit d1cad46

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

+8006
-6767
lines changed

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

Lines changed: 0 additions & 64 deletions
This file was deleted.

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

Lines changed: 0 additions & 55 deletions
This file was deleted.

.syft.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
select-catalogers:
2+
- -github-actions-usage-cataloger

OWNERS

Lines changed: 9 additions & 8 deletions
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

3+
# DO NOT EDIT! File generated via https://github.com/openshift-knative/hack/tree/main/config.
4+
35
approvers:
4-
- technical-oversight-committee
5-
- knative-release-leads
6-
- client-writers
7-
- func-writers
8-
- functions-wg-leads
6+
- creydr
7+
- dsimansk
8+
- gauron99
9+
- lkingland
10+
- matejvasek
11+
- rudyredhat1
912

1013
reviewers:
11-
- client-writers
12-
- func-reviewers
13-
14+
- jrangelramos

cmd/tkn_tasks.go

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ func build
5959
```
6060
--base-image string Override the base image for your function (host builder only)
6161
--build-timestamp Use the actual time as the created time for the docker image. This is only useful for buildpacks builder.
62-
-b, --builder string Builder to use when creating the function's container. Currently supported builders are "host", "pack" and "s2i". ($FUNC_BUILDER) (default "pack")
62+
-b, --builder string Builder to use when creating the function's container. Currently supported builders are "host", "pack" and "s2i". ($FUNC_BUILDER) (default "s2i")
6363
--builder-image string Specify a custom builder image for use by the builder other than its default. ($FUNC_BUILDER_IMAGE)
6464
-c, --confirm Prompt to confirm options interactively ($FUNC_CONFIRM)
6565
-h, --help help for build

docs/reference/func_config_git_set.md

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ func deploy
116116
--base-image string Override the base image for your function (host builder only)
117117
--build string[="true"] Build the function. [auto|true|false]. ($FUNC_BUILD) (default "auto")
118118
--build-timestamp Use the actual time as the created time for the docker image. This is only useful for buildpacks builder.
119-
-b, --builder string Builder to use when creating the function's container. Currently supported builders are "host", "pack" and "s2i". (default "pack")
119+
-b, --builder string Builder to use when creating the function's container. Currently supported builders are "host", "pack" and "s2i". (default "s2i")
120120
--builder-image string Specify a custom builder image for use by the builder other than its default. ($FUNC_BUILDER_IMAGE)
121121
-c, --confirm Prompt to confirm options interactively ($FUNC_CONFIRM)
122122
--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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ func run
6969
--address string Interface and port on which to bind and listen. Default is 127.0.0.1:8080, or an available port if 8080 is not available. ($FUNC_ADDRESS)
7070
--base-image string Override the base image for your function (host builder only)
7171
--build string[="true"] Build the function. [auto|true|false]. ($FUNC_BUILD) (default "auto")
72-
-b, --builder string Builder to use when creating the function's container. Currently supported builders are "host", "pack" and "s2i". (default "pack")
72+
-b, --builder string Builder to use when creating the function's container. Currently supported builders are "host", "pack" and "s2i". (default "s2i")
7373
--builder-image string Specify a custom builder image for use by the builder other than its default. ($FUNC_BUILDER_IMAGE)
7474
-c, --confirm Prompt to confirm options interactively ($FUNC_CONFIRM)
7575
-t, --container Run the function in a container. ($FUNC_CONTAINER) (default true)

0 commit comments

Comments
 (0)