You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/openfaas-pro/builder.md
+4-6Lines changed: 4 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -113,7 +113,7 @@ faas-cli up --remote-builder http://127.0.0.1:8081/build \
113
113
114
114
Build secrets let you pass private registry tokens, CA certificates, or other sensitive values into a `RUN --mount=type=secret` instruction during a remote build. Secrets are sealed (encrypted) client-side so they are protected in transit, even without TLS.
115
115
116
-
> Note: `faas-cli` version 0.18.5+ is required for the `secret keygen`, `secret seal`, and `secret unseal` commands.
116
+
> Note: `faas-cli` version 0.18.6+ is required for the `secret keygen`, `secret seal`, and `secret unseal` commands.
Then set `buildSecrets.privateKeySecret`and `buildSecrets.keyID`in the [helm chart values](https://github.com/openfaas/faas-netes/tree/master/chart/pro-builder) and upgrade the release.
130
+
Then set `buildSecrets.privateKeySecret` in the [helm chart values](https://github.com/openfaas/faas-netes/tree/master/chart/pro-builder) and upgrade the release.
131
131
132
132
Distribute the `key.pub` file to anyone who needs to build with secrets.
133
133
@@ -159,8 +159,7 @@ Then publish using the remote builder:
159
159
faas-cli publish \
160
160
--remote-builder http://127.0.0.1:8081 \
161
161
--payload-secret $HOME/.openfaas/payload.txt \
162
-
--builder-public-key ./key.pub \
163
-
--builder-key-id builder-key-1
162
+
--builder-public-key ./key.pub
164
163
```
165
164
166
165
The secrets are sealed automatically by `faas-cli` before sending to the builder.
@@ -171,7 +170,6 @@ You can also seal secrets ahead of time using `faas-cli secret seal` and include
0 commit comments