From fbad25e2b553a94efeda3deadf28ce10e75e69ff Mon Sep 17 00:00:00 2001 From: Pierig Le Saux Date: Tue, 7 Apr 2026 13:27:24 -0400 Subject: [PATCH] fix: add jfrog parameters to default config generation test --- system/t02_config/CreateConfigTest_gold | 31 +++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/system/t02_config/CreateConfigTest_gold b/system/t02_config/CreateConfigTest_gold index 93177314..d8e39c9d 100644 --- a/system/t02_config/CreateConfigTest_gold +++ b/system/t02_config/CreateConfigTest_gold @@ -196,6 +196,35 @@ filesystem_publish_endpoints: # # `aptly publish snapshot wheezy-main s3:test:` # + +# JFrog Artifactory Endpoint Support +# +# aptly can be configured to publish repositories directly to JFrog Artifactory. First, +# publishing endpoints should be described in the aptly configuration file. +# +# The destination Artifactory repo should be of the "generic" type, not "debian". +# +# In order to publish to JFrog, specify endpoint as `jfrog:endpoint-name:` before +# publishing prefix on the command line, e.g.: +# +# `aptly publish snapshot wheezy-main jfrog:test:` +# +jfrog_publish_endpoints: + # # Endpoint Name + # test: + # # JFrog URL + # url: "https://artifactory.example.com/artifactory/" + # # Repository + # repository: apt-local + # # Jfrog credentials to authenticate to Artifactory. If not supplied, the + # # environment variables `JFROG_USERNAME`, `JFROG_PASSWORD`, `JFROG_APIKEY`, + # # and `JFROG_ACCESSTOKEN` can be used + # # Authentication requires one of: user+pass, api key, or access token + # username: admin + # password: password + # api_key: api_key + # access_token: access_token + s3_publish_endpoints: # # Endpoint Name # test: @@ -396,3 +425,5 @@ packagepool_storage: # # defaults to "https://.blob.core.windows.net" # endpoint: "" + +