Skip to content

Commit 7914454

Browse files
authored
make was not called #2234 (#2245)
Signed-off-by: Matthias Wessendorf <mwessend@redhat.com>
1 parent db0a6ed commit 7914454

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

docs/reference/func_build.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,10 @@ NAME
99
func build - Build a function container locally without deploying
1010

1111
SYNOPSIS
12-
func build [-r|--registry] [--builder] [--builder-image] [--push]
12+
func build [-r|--registry] [--builder] [--builder-image]
13+
[--push] [--username] [--password] [--token]
1314
[--platform] [-p|--path] [-c|--confirm] [-v|--verbose]
14-
[--build-timestamp]
15+
[--build-timestamp] [--registry-insecure]
1516

1617
DESCRIPTION
1718

@@ -66,6 +67,7 @@ func build
6667
--platform string Optionally specify a target platform, for example "linux/amd64" when using the s2i build strategy
6768
-u, --push Attempt to push the function image to the configured registry after being successfully built
6869
-r, --registry string Container registry + registry namespace. (ex 'ghcr.io/myuser'). The full image name is automatically determined using this along with function name. ($FUNC_REGISTRY)
70+
--registry-insecure Disable HTTPS when communicating to the registry ($FUNC_REGISTRY_INSECURE)
6971
-v, --verbose Print verbose logs ($FUNC_VERBOSE)
7072
```
7173

docs/reference/func_deploy.md

+2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ SYNOPSIS
1414
[-b|--build] [--builder] [--builder-image] [-p|--push]
1515
[--domain] [--platform] [--build-timestamp] [--pvc-size]
1616
[--service-account] [-c|--confirm] [-v|--verbose]
17+
[--registry-insecure]
1718

1819
DESCRIPTION
1920

@@ -130,6 +131,7 @@ func deploy
130131
-u, --push Push the function image to registry before deploying. ($FUNC_PUSH) (default true)
131132
--pvc-size string When triggering a remote deployment, set a custom volume size to allocate for the build operation ($FUNC_PVC_SIZE)
132133
-r, --registry string Container registry + registry namespace. (ex 'ghcr.io/myuser'). The full image name is automatically determined using this along with function name. ($FUNC_REGISTRY)
134+
--registry-insecure Disable HTTPS when communicating to the registry ($FUNC_REGISTRY_INSECURE)
133135
-R, --remote Trigger a remote deployment. Default is to deploy and build from the local system ($FUNC_REMOTE)
134136
--service-account string Service account to be used in the deployed function ($FUNC_SERVICE_ACCOUNT)
135137
-v, --verbose Print verbose logs ($FUNC_VERBOSE)

0 commit comments

Comments
 (0)