Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add documentation for harbor.yml secrets #359

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
20 changes: 20 additions & 0 deletions docs/install-config/configure-yml-file.md
Expand Up @@ -404,6 +404,26 @@ The following table lists the additional, optional parameters that you can set t
<li><code>timeout:</code>: The timeout of data transfer</li>
</ul></td>
</tr>
<tr>
<td valign="top"><code>core</code></td>
<td valign="top">&nbsp;</td>
<td valign="top">Configure core service.</td>
</tr>
<tr>
<td valign="top">&nbsp;</td>
<td valign="top"><code>secret</code></td>
<td valign="top">The secret which is used when core server communicates with other components. Must be a string of 16 characters. The default is a random string.</td>
</tr>
<tr>
<td valign="top">&nbsp;</td>
<td valign="top"><code>xsrf_token</code></td>
<td valign="top">The cross-site request forgery token. Must be a string of 32 characters. The default is a random string.</td>
</tr>
<tr>
<td valign="top"><code>jobservice</code></td>
<td valign="top"><code>secret</code></td>
<td valign="top">The secret which is used when job service communicates with other components. Must be a string of 16 characters. The default is a random string.</td>
</tr>
</table>


Expand Down