diff --git a/app/models/integrations/harbor.rb b/app/models/integrations/harbor.rb index 44813795fc01adccbad3f4da9500231008a294fa..4520dd26a07787d0bbf2eb4b2859260aecaf5046 100644 --- a/app/models/integrations/harbor.rb +++ b/app/models/integrations/harbor.rb @@ -1,4 +1,5 @@ # frozen_string_literal: true +require 'uri' module Integrations class Harbor < Integration @@ -20,7 +21,7 @@ def description end def help - s_("HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use.") + s_("HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_HOST’, ‘$HARBOR_OCI’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use.") end class << self @@ -78,8 +79,12 @@ def fields def ci_variables return [] unless activated? + oci_uri = URI.parse(url) + oci_uri.scheme = 'oci' [ { key: 'HARBOR_URL', value: url }, + { key: 'HARBOR_HOST', value: oci_uri.host }, + { key: 'HARBOR_OCI', value: oci_uri.to_s }, { key: 'HARBOR_PROJECT', value: project_name }, { key: 'HARBOR_USERNAME', value: username.gsub(/^robot\$/, 'robot$$') }, { key: 'HARBOR_PASSWORD', value: password, public: false, masked: true } diff --git a/doc/user/project/integrations/harbor.md b/doc/user/project/integrations/harbor.md index 1319c9e74cdd791ad4a66c7fbd3bb5f739791762..da35f0dc226701018df6fd3eed41fc43d3e7f652 100644 --- a/doc/user/project/integrations/harbor.md +++ b/doc/user/project/integrations/harbor.md @@ -39,7 +39,7 @@ GitLab supports integrating Harbor projects at the group or project level. Compl After the Harbor integration is activated: -- The global variables `$HARBOR_USERNAME`, `$HARBOR_PASSWORD`, `$HARBOR_URL`, and `$HARBOR_PROJECT` are created for CI/CD use. +- The global variables `$HARBOR_USERNAME`, `$HARBOR_HOST`, `$HARBOR_OCI`, `$HARBOR_PASSWORD`, `$HARBOR_URL`, and `$HARBOR_PROJECT` are created for CI/CD use. - The project-level integration settings override the group-level integration settings. ## Secure your requests to the Harbor APIs @@ -50,3 +50,51 @@ the `username:password` combination. The following are suggestions for safe use: - Use TLS on the Harbor APIs you connect to. - Follow the principle of least privilege (for access on Harbor) with your credentials. - Have a rotation policy on your credentials. + +## Examples of Harbor variables in CI/CD + +### Push a Docker image with kaniko + +For more information, see [Use kaniko to build Docker images](../../../ci/docker/using_kaniko.md). + +```yaml +docker: + stage: docker + image: + name: gcr.io/kaniko-project/executor:debug + entrypoint: [''] + script: + - mkdir -p /kaniko/.docker + - echo "{\"auths\":{\"${HARBOR_HOST}\":{\"auth\":\"$(echo -n ${HARBOR_USERNAME}:${HARBOR_PASSWORD} | base64)\"}}}" > /kaniko/.docker/config.json + - >- + /kaniko/executor + --context "${CI_PROJECT_DIR}" + --dockerfile "${CI_PROJECT_DIR}/Dockerfile" + --destination "${HARBOR_HOST}/${HARBOR_PROJECT}/${CI_PROJECT_NAME}:${CI_COMMIT_TAG}" + rules: + - if: $CI_COMMIT_TAG +``` + +### Push a Helm chart with an OCI registry + +Helm supports OCI registries by default. OCI is supported in [Harbor 2.0](https://github.com/goharbor/harbor/releases/tag/v2.0.0) and later. +Read more about OCI in Helm's [blog](https://helm.sh/blog/storing-charts-in-oci/) and [documentation](https://helm.sh/docs/topics/registries/#enabling-oci-support). + +```yaml +helm: + stage: helm + image: + name: dtzar/helm-kubectl:latest + entrypoint: [''] + variables: + # Enable OCI support (not required since Helm v3.8.0) + HELM_EXPERIMENTAL_OCI: 1 + script: + # Log in to the Helm registry + - helm registry login "${HARBOR_URL}" -u "${HARBOR_USERNAME}" -p "${HARBOR_PASSWORD}" + # Package your Helm chart, which is in the `test` directory + - helm package test + # Your helm chart is created with <chart name>-<chart release>.tgz + # You can push all building charts to your Harbor repository + - helm push test-*.tgz ${HARBOR_OCI}/${HARBOR_PROJECT} +``` diff --git a/locale/am_ET/gitlab.po b/locale/am_ET/gitlab.po index 528d2d5a9dc3362f54fde2a4431b0ca28573356f..4eb82a515bbb3b747723ca3d54ae9ea43736d2f3 100644 --- a/locale/am_ET/gitlab.po +++ b/locale/am_ET/gitlab.po @@ -18606,7 +18606,7 @@ msgstr "" msgid "Harbor Registry" msgstr "" -msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." +msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_HOST’, ‘$HARBOR_OCI’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." msgstr "" msgid "HarborIntegration|Base URL of the Harbor instance." diff --git a/locale/ar_SA/gitlab.po b/locale/ar_SA/gitlab.po index 13bba89f9f3ede6761d64c3d1a89dd3c091e2f95..605f048476048d6c449d787ea091e3dc875b218b 100644 --- a/locale/ar_SA/gitlab.po +++ b/locale/ar_SA/gitlab.po @@ -19258,7 +19258,7 @@ msgstr "" msgid "Harbor Registry" msgstr "" -msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." +msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_HOST’, ‘$HARBOR_OCI’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." msgstr "" msgid "HarborIntegration|Base URL of the Harbor instance." diff --git a/locale/as_IN/gitlab.po b/locale/as_IN/gitlab.po index b89a9356199bca8eff91f403c08357d33f57a63f..e30483512aa3da5d4efc79cdfc5aa3476dc47020 100644 --- a/locale/as_IN/gitlab.po +++ b/locale/as_IN/gitlab.po @@ -18606,7 +18606,7 @@ msgstr "" msgid "Harbor Registry" msgstr "" -msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." +msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_HOST’, ‘$HARBOR_OCI’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." msgstr "" msgid "HarborIntegration|Base URL of the Harbor instance." diff --git a/locale/az_AZ/gitlab.po b/locale/az_AZ/gitlab.po index 25f52dd4766d22aee4261b79e51e679e5beb0eda..0ef60366b240f3f4ab00c13c2e5ce06d2e561be5 100644 --- a/locale/az_AZ/gitlab.po +++ b/locale/az_AZ/gitlab.po @@ -18606,7 +18606,7 @@ msgstr "" msgid "Harbor Registry" msgstr "" -msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." +msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_HOST’, ‘$HARBOR_OCI’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." msgstr "" msgid "HarborIntegration|Base URL of the Harbor instance." diff --git a/locale/ba_RU/gitlab.po b/locale/ba_RU/gitlab.po index b001894511462a4aab7c9a4c793209ccc9caa554..6574055a3c66e0eb88854d294159f7cfcf29c95d 100644 --- a/locale/ba_RU/gitlab.po +++ b/locale/ba_RU/gitlab.po @@ -18443,7 +18443,7 @@ msgstr "" msgid "Harbor Registry" msgstr "" -msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." +msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_HOST’, ‘$HARBOR_OCI’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." msgstr "" msgid "HarborIntegration|Base URL of the Harbor instance." diff --git a/locale/bg/gitlab.po b/locale/bg/gitlab.po index a0139d7fa7ef9c4f00cc25e5e3805add062eaab7..8a87637e32970b346da27a621d0de84b8bb65f0b 100644 --- a/locale/bg/gitlab.po +++ b/locale/bg/gitlab.po @@ -18606,7 +18606,7 @@ msgstr "" msgid "Harbor Registry" msgstr "" -msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." +msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_HOST’, ‘$HARBOR_OCI’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." msgstr "" msgid "HarborIntegration|Base URL of the Harbor instance." diff --git a/locale/bn_BD/gitlab.po b/locale/bn_BD/gitlab.po index 6ec67f349b555bfe231e6a47c76e8e6fb2345838..8046d18b77cf9d4794d494d5ed7ffe69b4df3e28 100644 --- a/locale/bn_BD/gitlab.po +++ b/locale/bn_BD/gitlab.po @@ -18606,7 +18606,7 @@ msgstr "" msgid "Harbor Registry" msgstr "" -msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." +msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_HOST’, ‘$HARBOR_OCI’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." msgstr "" msgid "HarborIntegration|Base URL of the Harbor instance." diff --git a/locale/bn_IN/gitlab.po b/locale/bn_IN/gitlab.po index 482f0eba47f1caaadfab6065e7b0425a50da07b1..ef90e2786281a69657673721bbd9c1ae769c80a8 100644 --- a/locale/bn_IN/gitlab.po +++ b/locale/bn_IN/gitlab.po @@ -18606,7 +18606,7 @@ msgstr "" msgid "Harbor Registry" msgstr "" -msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." +msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_HOST’, ‘$HARBOR_OCI’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." msgstr "" msgid "HarborIntegration|Base URL of the Harbor instance." diff --git a/locale/br_FR/gitlab.po b/locale/br_FR/gitlab.po index b4826e3db34c9021b5cc2e9517a49779afd5b59d..b31578132dd559e6b01c9f46ff85051cf2efb044 100644 --- a/locale/br_FR/gitlab.po +++ b/locale/br_FR/gitlab.po @@ -19095,7 +19095,7 @@ msgstr "" msgid "Harbor Registry" msgstr "" -msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." +msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_HOST’, ‘$HARBOR_OCI’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." msgstr "" msgid "HarborIntegration|Base URL of the Harbor instance." diff --git a/locale/bs_BA/gitlab.po b/locale/bs_BA/gitlab.po index e075be25a7b93a1ecbfffa461786e7085d2fcd8b..137079d8a974087e5f20f2c992ac41e8c2727302 100644 --- a/locale/bs_BA/gitlab.po +++ b/locale/bs_BA/gitlab.po @@ -18769,7 +18769,7 @@ msgstr "" msgid "Harbor Registry" msgstr "" -msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." +msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_HOST’, ‘$HARBOR_OCI’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." msgstr "" msgid "HarborIntegration|Base URL of the Harbor instance." diff --git a/locale/ca_ES/gitlab.po b/locale/ca_ES/gitlab.po index b0f9d47774ff006fdba99df76e139bd94999acb6..b5cec5bc415a7291fa08c2cd32614d36814850b5 100644 --- a/locale/ca_ES/gitlab.po +++ b/locale/ca_ES/gitlab.po @@ -18606,7 +18606,7 @@ msgstr "" msgid "Harbor Registry" msgstr "" -msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." +msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_HOST’, ‘$HARBOR_OCI’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." msgstr "" msgid "HarborIntegration|Base URL of the Harbor instance." diff --git a/locale/cs_CZ/gitlab.po b/locale/cs_CZ/gitlab.po index 303fbcc03b1b64ce4853c44a445ccb7111a76bf3..2a1b323223c771273a1965e7986a62495e577185 100644 --- a/locale/cs_CZ/gitlab.po +++ b/locale/cs_CZ/gitlab.po @@ -18932,7 +18932,7 @@ msgstr "" msgid "Harbor Registry" msgstr "" -msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." +msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_HOST’, ‘$HARBOR_OCI’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." msgstr "" msgid "HarborIntegration|Base URL of the Harbor instance." diff --git a/locale/cy_GB/gitlab.po b/locale/cy_GB/gitlab.po index 098a58217f5f44e6f74977fcca4857d2b4874ba0..4199ea4152059d3a7ed987d448c83f85d189a4d6 100644 --- a/locale/cy_GB/gitlab.po +++ b/locale/cy_GB/gitlab.po @@ -19258,7 +19258,7 @@ msgstr "" msgid "Harbor Registry" msgstr "" -msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." +msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_HOST’, ‘$HARBOR_OCI’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." msgstr "" msgid "HarborIntegration|Base URL of the Harbor instance." diff --git a/locale/da_DK/gitlab.po b/locale/da_DK/gitlab.po index 668affb677fc80b99cbf973fc0b07837ffdbc9fa..657ec4089b1854be9d6713a6afeb241eec6a61fe 100644 --- a/locale/da_DK/gitlab.po +++ b/locale/da_DK/gitlab.po @@ -18606,7 +18606,7 @@ msgstr "" msgid "Harbor Registry" msgstr "" -msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." +msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_HOST’, ‘$HARBOR_OCI’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." msgstr "" msgid "HarborIntegration|Base URL of the Harbor instance." diff --git a/locale/de/gitlab.po b/locale/de/gitlab.po index 08a30272c9af800f27d3be2e15197b780f7795b7..34658ee3ef16e796aaa2dfbffc76c45e333c3e1c 100644 --- a/locale/de/gitlab.po +++ b/locale/de/gitlab.po @@ -18606,7 +18606,7 @@ msgstr "" msgid "Harbor Registry" msgstr "" -msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." +msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_HOST’, ‘$HARBOR_OCI’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." msgstr "" msgid "HarborIntegration|Base URL of the Harbor instance." diff --git a/locale/el_GR/gitlab.po b/locale/el_GR/gitlab.po index 1fe7bcf80925a618ce2f7835a570ea8a26fc8372..c24523d314fe3b3419770a9b83cd197c3a2a5479 100644 --- a/locale/el_GR/gitlab.po +++ b/locale/el_GR/gitlab.po @@ -18606,7 +18606,7 @@ msgstr "" msgid "Harbor Registry" msgstr "" -msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." +msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_HOST’, ‘$HARBOR_OCI’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." msgstr "" msgid "HarborIntegration|Base URL of the Harbor instance." diff --git a/locale/eo/gitlab.po b/locale/eo/gitlab.po index a5849fb4d30ca68b171a9e81c653fbceae894058..7c11b13d6e1e0997fb8ef0114cace2af04d4626d 100644 --- a/locale/eo/gitlab.po +++ b/locale/eo/gitlab.po @@ -18606,7 +18606,7 @@ msgstr "" msgid "Harbor Registry" msgstr "" -msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." +msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_HOST’, ‘$HARBOR_OCI’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." msgstr "" msgid "HarborIntegration|Base URL of the Harbor instance." diff --git a/locale/es/gitlab.po b/locale/es/gitlab.po index 948e8a0aaa4bcdd4a60cd6187b320c9590b393b4..66ae6a0eb5d6f5a05ac4123447f6777e6a10696d 100644 --- a/locale/es/gitlab.po +++ b/locale/es/gitlab.po @@ -18606,7 +18606,7 @@ msgstr "HTTP básico: Acceso denegado\\nDebe utilizar un token de acceso persona msgid "Harbor Registry" msgstr "" -msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." +msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_HOST’, ‘$HARBOR_OCI’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." msgstr "" msgid "HarborIntegration|Base URL of the Harbor instance." diff --git a/locale/et_EE/gitlab.po b/locale/et_EE/gitlab.po index 2ddfbba495c386282c7a8d2050c6a2bce4f1aa0f..b3a7505e7bc84eeb3d9876f2e76b548264d81fea 100644 --- a/locale/et_EE/gitlab.po +++ b/locale/et_EE/gitlab.po @@ -18606,7 +18606,7 @@ msgstr "" msgid "Harbor Registry" msgstr "" -msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." +msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_HOST’, ‘$HARBOR_OCI’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." msgstr "" msgid "HarborIntegration|Base URL of the Harbor instance." diff --git a/locale/fa_IR/gitlab.po b/locale/fa_IR/gitlab.po index 291ac8fdbead1416a5ae6bc2a8761b6d15c8e2a8..eca92f92d65e74bd7e4c6d4a67292e6bcc4ae2cc 100644 --- a/locale/fa_IR/gitlab.po +++ b/locale/fa_IR/gitlab.po @@ -18606,7 +18606,7 @@ msgstr "" msgid "Harbor Registry" msgstr "" -msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." +msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_HOST’, ‘$HARBOR_OCI’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." msgstr "" msgid "HarborIntegration|Base URL of the Harbor instance." diff --git a/locale/fi_FI/gitlab.po b/locale/fi_FI/gitlab.po index 6d5a1391e365d0f05a9a8e8f66aea3f2e8826c06..200690e90007982175f1db249315a86f9da1d928 100644 --- a/locale/fi_FI/gitlab.po +++ b/locale/fi_FI/gitlab.po @@ -18606,7 +18606,7 @@ msgstr "" msgid "Harbor Registry" msgstr "" -msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." +msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_HOST’, ‘$HARBOR_OCI’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." msgstr "" msgid "HarborIntegration|Base URL of the Harbor instance." diff --git a/locale/fil_PH/gitlab.po b/locale/fil_PH/gitlab.po index 6156419bd13dbc7cd8c928bfbce8ac02a1257ead..7532ca00a713b0efdbbec5a1f98f74da7591fbef 100644 --- a/locale/fil_PH/gitlab.po +++ b/locale/fil_PH/gitlab.po @@ -18606,7 +18606,7 @@ msgstr "" msgid "Harbor Registry" msgstr "" -msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." +msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_HOST’, ‘$HARBOR_OCI’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." msgstr "" msgid "HarborIntegration|Base URL of the Harbor instance." diff --git a/locale/fr/gitlab.po b/locale/fr/gitlab.po index f17e3bca8571450df3ff33329440dc27b086dab3..6788fc4da4cd1a311dc94e4d09e4727e09f010b2 100644 --- a/locale/fr/gitlab.po +++ b/locale/fr/gitlab.po @@ -18606,7 +18606,7 @@ msgstr "" msgid "Harbor Registry" msgstr "" -msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." +msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_HOST’, ‘$HARBOR_OCI’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." msgstr "" msgid "HarborIntegration|Base URL of the Harbor instance." diff --git a/locale/gitlab.pot b/locale/gitlab.pot index d82e155eeaaa9ae244c27e0d089af49c3b9ff9bc..9054836bb5e6ab94e99616f9084177d06bd42b21 100644 --- a/locale/gitlab.pot +++ b/locale/gitlab.pot @@ -18651,7 +18651,7 @@ msgstr "" msgid "Harbor Registry" msgstr "" -msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." +msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_HOST’, ‘$HARBOR_OCI’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." msgstr "" msgid "HarborIntegration|Base URL of the Harbor instance." diff --git a/locale/gl_ES/gitlab.po b/locale/gl_ES/gitlab.po index b0445cf74680e233701706a86590e491ef9fc497..41ee8ae0c575612b9c9f3e8b1c6819b650ddd4d2 100644 --- a/locale/gl_ES/gitlab.po +++ b/locale/gl_ES/gitlab.po @@ -18606,7 +18606,7 @@ msgstr "" msgid "Harbor Registry" msgstr "" -msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." +msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_HOST’, ‘$HARBOR_OCI’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." msgstr "" msgid "HarborIntegration|Base URL of the Harbor instance." diff --git a/locale/he_IL/gitlab.po b/locale/he_IL/gitlab.po index 7b7ab7193ea0ac9565787805ceb4795b06a4a27e..0d8ac97ae263667df94c73e0c7da2e7c570d1613 100644 --- a/locale/he_IL/gitlab.po +++ b/locale/he_IL/gitlab.po @@ -18932,7 +18932,7 @@ msgstr "" msgid "Harbor Registry" msgstr "" -msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." +msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_HOST’, ‘$HARBOR_OCI’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." msgstr "" msgid "HarborIntegration|Base URL of the Harbor instance." diff --git a/locale/hi_IN/gitlab.po b/locale/hi_IN/gitlab.po index 13732d6c37b906cabf7d3ca23fbc8a82253ce4f1..a5aec924e0be1590aec155624d54454976c8c682 100644 --- a/locale/hi_IN/gitlab.po +++ b/locale/hi_IN/gitlab.po @@ -18606,7 +18606,7 @@ msgstr "" msgid "Harbor Registry" msgstr "" -msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." +msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_HOST’, ‘$HARBOR_OCI’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." msgstr "" msgid "HarborIntegration|Base URL of the Harbor instance." diff --git a/locale/hr_HR/gitlab.po b/locale/hr_HR/gitlab.po index e7fa0e06bfaf0ccbd0d1dd6c41906094389a9f09..6b3791523295875ac9f06d6e04d742eceab8c6ff 100644 --- a/locale/hr_HR/gitlab.po +++ b/locale/hr_HR/gitlab.po @@ -18769,7 +18769,7 @@ msgstr "" msgid "Harbor Registry" msgstr "" -msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." +msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_HOST’, ‘$HARBOR_OCI’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." msgstr "" msgid "HarborIntegration|Base URL of the Harbor instance." diff --git a/locale/hu_HU/gitlab.po b/locale/hu_HU/gitlab.po index 264887d4f96478285b2ed97532087cad93c8fdc7..3f53bb77c0c0b375ba8dca8ab415a52467b0d4ea 100644 --- a/locale/hu_HU/gitlab.po +++ b/locale/hu_HU/gitlab.po @@ -18606,7 +18606,7 @@ msgstr "" msgid "Harbor Registry" msgstr "" -msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." +msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_HOST’, ‘$HARBOR_OCI’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." msgstr "" msgid "HarborIntegration|Base URL of the Harbor instance." diff --git a/locale/hy_AM/gitlab.po b/locale/hy_AM/gitlab.po index 4f974ebe0200fc64f6d75113dd07cdfdb56c993e..11b2cac56408986191130317a0f4b7f835ff1b48 100644 --- a/locale/hy_AM/gitlab.po +++ b/locale/hy_AM/gitlab.po @@ -18606,7 +18606,7 @@ msgstr "" msgid "Harbor Registry" msgstr "" -msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." +msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_HOST’, ‘$HARBOR_OCI’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." msgstr "" msgid "HarborIntegration|Base URL of the Harbor instance." diff --git a/locale/id_ID/gitlab.po b/locale/id_ID/gitlab.po index 569e13bda38e609bf2e35d2bbbd2634659509060..5c029196ae400b2d1f2886ca738358a36abb9db7 100644 --- a/locale/id_ID/gitlab.po +++ b/locale/id_ID/gitlab.po @@ -18443,7 +18443,7 @@ msgstr "" msgid "Harbor Registry" msgstr "" -msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." +msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_HOST’, ‘$HARBOR_OCI’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." msgstr "" msgid "HarborIntegration|Base URL of the Harbor instance." diff --git a/locale/ig_NG/gitlab.po b/locale/ig_NG/gitlab.po index 7c42830845a1a178b159a992a0a19b4a2a7d6af9..8e85e87824a84f562972e56d3f820e2f07609af1 100644 --- a/locale/ig_NG/gitlab.po +++ b/locale/ig_NG/gitlab.po @@ -18443,7 +18443,7 @@ msgstr "" msgid "Harbor Registry" msgstr "" -msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." +msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_HOST’, ‘$HARBOR_OCI’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." msgstr "" msgid "HarborIntegration|Base URL of the Harbor instance." diff --git a/locale/is_IS/gitlab.po b/locale/is_IS/gitlab.po index caaae0558dcd239f33cc2666a248a99ea91a539a..c3ace52e52f460c300c7cce165f6b03361892241 100644 --- a/locale/is_IS/gitlab.po +++ b/locale/is_IS/gitlab.po @@ -18606,7 +18606,7 @@ msgstr "" msgid "Harbor Registry" msgstr "" -msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." +msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_HOST’, ‘$HARBOR_OCI’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." msgstr "" msgid "HarborIntegration|Base URL of the Harbor instance." diff --git a/locale/it/gitlab.po b/locale/it/gitlab.po index 7dd1e5865d6ce7af70b428adae52873714d63483..da554a0b8092013344a147c6c4b23dc7baeab881 100644 --- a/locale/it/gitlab.po +++ b/locale/it/gitlab.po @@ -18606,7 +18606,7 @@ msgstr "" msgid "Harbor Registry" msgstr "" -msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." +msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_HOST’, ‘$HARBOR_OCI’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." msgstr "" msgid "HarborIntegration|Base URL of the Harbor instance." diff --git a/locale/ja/gitlab.po b/locale/ja/gitlab.po index b204a0cfa7df2b681471f643168cdf8f4cd96678..1a71aab2a6755ef35c5d96f0703e6ba5192647da 100644 --- a/locale/ja/gitlab.po +++ b/locale/ja/gitlab.po @@ -18443,7 +18443,7 @@ msgstr "HTTP Basic: ã‚¢ã‚¯ã‚»ã‚¹æ‹’å¦ \\n Git over HTTPã«ã¯ 'api' スコー msgid "Harbor Registry" msgstr "" -msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." +msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_HOST’, ‘$HARBOR_OCI’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." msgstr "" msgid "HarborIntegration|Base URL of the Harbor instance." diff --git a/locale/ka_GE/gitlab.po b/locale/ka_GE/gitlab.po index 45cde29c29bf928a1d61e34ed4bc6fe70a3d5ea4..e886186ce5e8034abcfea340fbf4ea36f95e411e 100644 --- a/locale/ka_GE/gitlab.po +++ b/locale/ka_GE/gitlab.po @@ -18606,7 +18606,7 @@ msgstr "" msgid "Harbor Registry" msgstr "" -msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." +msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_HOST’, ‘$HARBOR_OCI’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." msgstr "" msgid "HarborIntegration|Base URL of the Harbor instance." diff --git a/locale/kab/gitlab.po b/locale/kab/gitlab.po index a3dc0c27dbb7727a9528d338e53027b1f9be07ce..c9bb6cf0112131fbf499efef1a3117c9aabb897c 100644 --- a/locale/kab/gitlab.po +++ b/locale/kab/gitlab.po @@ -18606,7 +18606,7 @@ msgstr "" msgid "Harbor Registry" msgstr "" -msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." +msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_HOST’, ‘$HARBOR_OCI’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." msgstr "" msgid "HarborIntegration|Base URL of the Harbor instance." diff --git a/locale/ko/gitlab.po b/locale/ko/gitlab.po index 32f4816bf7593d237c199281a29dd54c005fd2ac..3ba11c8414cb1f6cfd47a5a9fdb127404f53ea4e 100644 --- a/locale/ko/gitlab.po +++ b/locale/ko/gitlab.po @@ -18443,7 +18443,7 @@ msgstr "HTTP Basic: ì ‘ê·¼ ê±°ë¶€\\nGit over HTTPì—서는 'api' 스코프를 msgid "Harbor Registry" msgstr "" -msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." +msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_HOST’, ‘$HARBOR_OCI’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." msgstr "" msgid "HarborIntegration|Base URL of the Harbor instance." diff --git a/locale/ku_TR/gitlab.po b/locale/ku_TR/gitlab.po index e76fbe294ab2fcdac620ca4749525ef99239e086..385576f587d2e8ee6319e786a581f539f92cfb14 100644 --- a/locale/ku_TR/gitlab.po +++ b/locale/ku_TR/gitlab.po @@ -18606,7 +18606,7 @@ msgstr "" msgid "Harbor Registry" msgstr "" -msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." +msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_HOST’, ‘$HARBOR_OCI’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." msgstr "" msgid "HarborIntegration|Base URL of the Harbor instance." diff --git a/locale/ky_KG/gitlab.po b/locale/ky_KG/gitlab.po index 73a8a0af2a389aeb48fc8093091d16179080b292..b2e6acdbdee77e1e8bd82d48a2fc3496b2ac928d 100644 --- a/locale/ky_KG/gitlab.po +++ b/locale/ky_KG/gitlab.po @@ -18606,7 +18606,7 @@ msgstr "" msgid "Harbor Registry" msgstr "" -msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." +msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_HOST’, ‘$HARBOR_OCI’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." msgstr "" msgid "HarborIntegration|Base URL of the Harbor instance." diff --git a/locale/lt_LT/gitlab.po b/locale/lt_LT/gitlab.po index 1b696b14c1447d4e9bb7e13dc89e644ceb7222a0..982f06a851a1597102980d652064a2953d60d98e 100644 --- a/locale/lt_LT/gitlab.po +++ b/locale/lt_LT/gitlab.po @@ -18932,7 +18932,7 @@ msgstr "" msgid "Harbor Registry" msgstr "" -msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." +msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_HOST’, ‘$HARBOR_OCI’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." msgstr "" msgid "HarborIntegration|Base URL of the Harbor instance." diff --git a/locale/mk_MK/gitlab.po b/locale/mk_MK/gitlab.po index 31a352189a569dd01db46f5c74ee319c2e2455cd..726145218648eaac53c49190268bc1436afeab28 100644 --- a/locale/mk_MK/gitlab.po +++ b/locale/mk_MK/gitlab.po @@ -18606,7 +18606,7 @@ msgstr "" msgid "Harbor Registry" msgstr "" -msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." +msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_HOST’, ‘$HARBOR_OCI’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." msgstr "" msgid "HarborIntegration|Base URL of the Harbor instance." diff --git a/locale/ml_IN/gitlab.po b/locale/ml_IN/gitlab.po index 71b9304978ba89a339f4cba1dc77508ed005af97..eaf5f81f1fca23339370f9b33c89e23f5d020ba7 100644 --- a/locale/ml_IN/gitlab.po +++ b/locale/ml_IN/gitlab.po @@ -18606,7 +18606,7 @@ msgstr "" msgid "Harbor Registry" msgstr "" -msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." +msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_HOST’, ‘$HARBOR_OCI’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." msgstr "" msgid "HarborIntegration|Base URL of the Harbor instance." diff --git a/locale/mn_MN/gitlab.po b/locale/mn_MN/gitlab.po index 2e4fe7093b0de50f8abb2db43175870358673671..50fc72678416fb51bc557679cce8766d47ec38ff 100644 --- a/locale/mn_MN/gitlab.po +++ b/locale/mn_MN/gitlab.po @@ -18606,7 +18606,7 @@ msgstr "" msgid "Harbor Registry" msgstr "" -msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." +msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_HOST’, ‘$HARBOR_OCI’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." msgstr "" msgid "HarborIntegration|Base URL of the Harbor instance." diff --git a/locale/nb_NO/gitlab.po b/locale/nb_NO/gitlab.po index 896d2c819023d181e0e4aa254bf6255e73bc69f5..359b5176b7818b0248a4e2f7f70a2ca5dee7568b 100644 --- a/locale/nb_NO/gitlab.po +++ b/locale/nb_NO/gitlab.po @@ -18606,7 +18606,7 @@ msgstr "" msgid "Harbor Registry" msgstr "" -msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." +msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_HOST’, ‘$HARBOR_OCI’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." msgstr "" msgid "HarborIntegration|Base URL of the Harbor instance." diff --git a/locale/nl_NL/gitlab.po b/locale/nl_NL/gitlab.po index 19c223f816523cba039ccfe31add55a0eaf6d7c0..6971da97935d1e237541c08c36662e1319ff012c 100644 --- a/locale/nl_NL/gitlab.po +++ b/locale/nl_NL/gitlab.po @@ -18606,7 +18606,7 @@ msgstr "" msgid "Harbor Registry" msgstr "" -msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." +msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_HOST’, ‘$HARBOR_OCI’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." msgstr "" msgid "HarborIntegration|Base URL of the Harbor instance." diff --git a/locale/or_IN/gitlab.po b/locale/or_IN/gitlab.po index 8c399d285e7b4a187320a995516b4acdcb4c2ff8..2246fa75700ea23091278c91a103575ddbcbca9e 100644 --- a/locale/or_IN/gitlab.po +++ b/locale/or_IN/gitlab.po @@ -18606,7 +18606,7 @@ msgstr "" msgid "Harbor Registry" msgstr "" -msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." +msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_HOST’, ‘$HARBOR_OCI’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." msgstr "" msgid "HarborIntegration|Base URL of the Harbor instance." diff --git a/locale/pa_IN/gitlab.po b/locale/pa_IN/gitlab.po index d4150c420f4dea35b90883ff3f6b4dea11bdaf27..5ef38608552ca548fe922116a44b908544110891 100644 --- a/locale/pa_IN/gitlab.po +++ b/locale/pa_IN/gitlab.po @@ -18606,7 +18606,7 @@ msgstr "" msgid "Harbor Registry" msgstr "" -msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." +msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_HOST’, ‘$HARBOR_OCI’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." msgstr "" msgid "HarborIntegration|Base URL of the Harbor instance." diff --git a/locale/pl_PL/gitlab.po b/locale/pl_PL/gitlab.po index bb1a18534a5c9069b5cc93882e2379fc8206a1a8..09d5d24ae357ca049c3530e25a1f0c2aa5d8d1bf 100644 --- a/locale/pl_PL/gitlab.po +++ b/locale/pl_PL/gitlab.po @@ -18932,7 +18932,7 @@ msgstr "" msgid "Harbor Registry" msgstr "" -msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." +msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_HOST’, ‘$HARBOR_OCI’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." msgstr "" msgid "HarborIntegration|Base URL of the Harbor instance." diff --git a/locale/pt_BR/gitlab.po b/locale/pt_BR/gitlab.po index 6eaecb3637f43dad3e5caf886819e9a806bf847a..5f764c12f81c5c325ef2435528bde9a2470a0734 100644 --- a/locale/pt_BR/gitlab.po +++ b/locale/pt_BR/gitlab.po @@ -18606,7 +18606,7 @@ msgstr "" msgid "Harbor Registry" msgstr "" -msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." +msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_HOST’, ‘$HARBOR_OCI’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." msgstr "" msgid "HarborIntegration|Base URL of the Harbor instance." diff --git a/locale/pt_PT/gitlab.po b/locale/pt_PT/gitlab.po index 0f05ffbf9793620afcf6fbc80c59cca5475af5f9..cb3c3d4ef00dca35e8fa236ca22f5100e6f53b5f 100644 --- a/locale/pt_PT/gitlab.po +++ b/locale/pt_PT/gitlab.po @@ -18606,7 +18606,7 @@ msgstr "" msgid "Harbor Registry" msgstr "" -msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." +msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_HOST’, ‘$HARBOR_OCI’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." msgstr "" msgid "HarborIntegration|Base URL of the Harbor instance." diff --git a/locale/ro_RO/gitlab.po b/locale/ro_RO/gitlab.po index af971005108a557de3a3c75efb5430bac0b3ad39..257e7248c1f159baf5cfe75c841247a3edb3886e 100644 --- a/locale/ro_RO/gitlab.po +++ b/locale/ro_RO/gitlab.po @@ -18769,8 +18769,8 @@ msgstr "HTTP Basic: Acces refuzat\\n Trebuie să folosiÈ›i un token de acces per msgid "Harbor Registry" msgstr "Registrul Harbor" -msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." -msgstr "După ce integrarea Harbor este activată, variabilele globale \"$HARBOR_USERNAME\", \"$HARBOR_PASSWORD\", \"$HARBOR_URL\" È™i \"$HARBOR_PROJECT\" vor fi create pentru utilizarea CI/CD." +msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_HOST’, ‘$HARBOR_OCI’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." +msgstr "După ce integrarea Harbor este activată, variabilele globale \"$HARBOR_USERNAME\", \"$HARBOR_HOST\", \"$HARBOR_OCI\" \"$HARBOR_PASSWORD\", \"$HARBOR_URL\" È™i \"$HARBOR_PROJECT\" vor fi create pentru utilizarea CI/CD." msgid "HarborIntegration|Base URL of the Harbor instance." msgstr "URL-ul de bază al instanÈ›ei Harbor." diff --git a/locale/ru/gitlab.po b/locale/ru/gitlab.po index 41c3a693864497419d472f987b2e644477249315..125cdcb03dfbaa067a23a42e0406f503635935f9 100644 --- a/locale/ru/gitlab.po +++ b/locale/ru/gitlab.po @@ -18932,7 +18932,7 @@ msgstr "HTTP Basic: доÑтуп запрещен\\nÐ’Ñ‹ должны иÑпол msgid "Harbor Registry" msgstr "" -msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." +msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_HOST’, ‘$HARBOR_OCI’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." msgstr "" msgid "HarborIntegration|Base URL of the Harbor instance." diff --git a/locale/si_LK/gitlab.po b/locale/si_LK/gitlab.po index 8f68f70d61edfdea03646531e6b8a57be723dfcd..0f71a982cb7e7fbf857c672a1546f94fb2a88498 100644 --- a/locale/si_LK/gitlab.po +++ b/locale/si_LK/gitlab.po @@ -18606,7 +18606,7 @@ msgstr "" msgid "Harbor Registry" msgstr "" -msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." +msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_HOST’, ‘$HARBOR_OCI’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." msgstr "" msgid "HarborIntegration|Base URL of the Harbor instance." diff --git a/locale/sk_SK/gitlab.po b/locale/sk_SK/gitlab.po index 48ec39b5d8a5fd96824c89a57f25c05ae870d680..6a42fe00dcc42355470f121350be82be0733d585 100644 --- a/locale/sk_SK/gitlab.po +++ b/locale/sk_SK/gitlab.po @@ -18932,7 +18932,7 @@ msgstr "" msgid "Harbor Registry" msgstr "" -msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." +msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_HOST’, ‘$HARBOR_OCI’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." msgstr "" msgid "HarborIntegration|Base URL of the Harbor instance." diff --git a/locale/sl_SI/gitlab.po b/locale/sl_SI/gitlab.po index f1c8bab68d3507741d50dd253aa2987659e29d5c..07e02310f986df2b838c2c73ed9ddaf0f1589aed 100644 --- a/locale/sl_SI/gitlab.po +++ b/locale/sl_SI/gitlab.po @@ -18932,7 +18932,7 @@ msgstr "" msgid "Harbor Registry" msgstr "" -msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." +msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_HOST’, ‘$HARBOR_OCI’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." msgstr "" msgid "HarborIntegration|Base URL of the Harbor instance." diff --git a/locale/sq_AL/gitlab.po b/locale/sq_AL/gitlab.po index fbf1e29d9f74fa7684bdfa6ed8e1ff6b4b676395..b24f795b8e3b46e09d7d3dfc62671cf73c30d5d2 100644 --- a/locale/sq_AL/gitlab.po +++ b/locale/sq_AL/gitlab.po @@ -18606,7 +18606,7 @@ msgstr "" msgid "Harbor Registry" msgstr "" -msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." +msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_HOST’, ‘$HARBOR_OCI’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." msgstr "" msgid "HarborIntegration|Base URL of the Harbor instance." diff --git a/locale/sr_CS/gitlab.po b/locale/sr_CS/gitlab.po index 3292cd10f20bf02ed2eca11950e2dfb28070f4b8..707648a632c2e6e4a545109628189bd402678a42 100644 --- a/locale/sr_CS/gitlab.po +++ b/locale/sr_CS/gitlab.po @@ -18769,7 +18769,7 @@ msgstr "" msgid "Harbor Registry" msgstr "" -msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." +msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_HOST’, ‘$HARBOR_OCI’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." msgstr "" msgid "HarborIntegration|Base URL of the Harbor instance." diff --git a/locale/sr_SP/gitlab.po b/locale/sr_SP/gitlab.po index 61a7f76413d4fa951e089c62cbfd6852212006c7..fe3d677f1a29ba940525f19473e9f8fc1fcfae0c 100644 --- a/locale/sr_SP/gitlab.po +++ b/locale/sr_SP/gitlab.po @@ -18769,7 +18769,7 @@ msgstr "" msgid "Harbor Registry" msgstr "" -msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." +msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_HOST’, ‘$HARBOR_OCI’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." msgstr "" msgid "HarborIntegration|Base URL of the Harbor instance." diff --git a/locale/sv_SE/gitlab.po b/locale/sv_SE/gitlab.po index 0aa68d56d8bf6753e91e10e5f630d704f67dd3c0..e4bfdd236a2717d91b4e55801fb7b0369f448fc9 100644 --- a/locale/sv_SE/gitlab.po +++ b/locale/sv_SE/gitlab.po @@ -18606,7 +18606,7 @@ msgstr "" msgid "Harbor Registry" msgstr "" -msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." +msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_HOST’, ‘$HARBOR_OCI’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." msgstr "" msgid "HarborIntegration|Base URL of the Harbor instance." diff --git a/locale/sw_KE/gitlab.po b/locale/sw_KE/gitlab.po index 2c90b0e4eafc2af4ee895a97576171f1391c4483..e6fc65228d2bb4fbe2139cb30025ae6106e32cd5 100644 --- a/locale/sw_KE/gitlab.po +++ b/locale/sw_KE/gitlab.po @@ -18606,7 +18606,7 @@ msgstr "" msgid "Harbor Registry" msgstr "" -msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." +msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_HOST’, ‘$HARBOR_OCI’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." msgstr "" msgid "HarborIntegration|Base URL of the Harbor instance." diff --git a/locale/ta_IN/gitlab.po b/locale/ta_IN/gitlab.po index 606e655b3001c16fd8c29593365e4e009682808e..714df4ad9a43a4c8ad83525ac7a8750bce055977 100644 --- a/locale/ta_IN/gitlab.po +++ b/locale/ta_IN/gitlab.po @@ -18606,7 +18606,7 @@ msgstr "" msgid "Harbor Registry" msgstr "" -msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." +msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_HOST’, ‘$HARBOR_OCI’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." msgstr "" msgid "HarborIntegration|Base URL of the Harbor instance." diff --git a/locale/th_TH/gitlab.po b/locale/th_TH/gitlab.po index af1779133b6ea87ce454f3725ff6852f46f11a3d..c74dbbea1a8b1833e8e010327b0dfd54a646854b 100644 --- a/locale/th_TH/gitlab.po +++ b/locale/th_TH/gitlab.po @@ -18443,7 +18443,7 @@ msgstr "" msgid "Harbor Registry" msgstr "" -msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." +msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_HOST’, ‘$HARBOR_OCI’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." msgstr "" msgid "HarborIntegration|Base URL of the Harbor instance." diff --git a/locale/tr_TR/gitlab.po b/locale/tr_TR/gitlab.po index afa658a3a2cce296fb30c7681e6ec6221015cdaf..2dec99815c69ca27ee675fd7f68724bad5a0b6bc 100644 --- a/locale/tr_TR/gitlab.po +++ b/locale/tr_TR/gitlab.po @@ -18606,7 +18606,7 @@ msgstr "" msgid "Harbor Registry" msgstr "" -msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." +msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_HOST’, ‘$HARBOR_OCI’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." msgstr "" msgid "HarborIntegration|Base URL of the Harbor instance." diff --git a/locale/uk/gitlab.po b/locale/uk/gitlab.po index 8a877b6cbc6a9f9eee87a4fdc7728d304a52a67a..43a2ba63d2566b3912a752183112e7e06c9908e5 100644 --- a/locale/uk/gitlab.po +++ b/locale/uk/gitlab.po @@ -18932,7 +18932,7 @@ msgstr "Базовий HTTP: відмовлено у доÑтупі\\nВи по msgid "Harbor Registry" msgstr "" -msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." +msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_HOST’, ‘$HARBOR_OCI’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." msgstr "" msgid "HarborIntegration|Base URL of the Harbor instance." diff --git a/locale/ur_PK/gitlab.po b/locale/ur_PK/gitlab.po index cb316de7e640d7796258b3b19537c0b544dcad32..8fc97bfadab68ecb0ac88db0e5b401bd5f3d2bec 100644 --- a/locale/ur_PK/gitlab.po +++ b/locale/ur_PK/gitlab.po @@ -18606,7 +18606,7 @@ msgstr "" msgid "Harbor Registry" msgstr "" -msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." +msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_HOST’, ‘$HARBOR_OCI’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." msgstr "" msgid "HarborIntegration|Base URL of the Harbor instance." diff --git a/locale/uz_UZ/gitlab.po b/locale/uz_UZ/gitlab.po index 3a1aef83934b8699e7b9a0dd33d78f07b22417a9..d24ebddf49376141c21b72c384b9a26a6b22dfe3 100644 --- a/locale/uz_UZ/gitlab.po +++ b/locale/uz_UZ/gitlab.po @@ -18606,7 +18606,7 @@ msgstr "" msgid "Harbor Registry" msgstr "" -msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." +msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_HOST’, ‘$HARBOR_OCI’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." msgstr "" msgid "HarborIntegration|Base URL of the Harbor instance." diff --git a/locale/vi_VN/gitlab.po b/locale/vi_VN/gitlab.po index 2d589a5db632f40c41e57d9bee90b93861b62d47..c09e5865b81d0d89a903bb0813929fd625a4b9f6 100644 --- a/locale/vi_VN/gitlab.po +++ b/locale/vi_VN/gitlab.po @@ -18443,7 +18443,7 @@ msgstr "" msgid "Harbor Registry" msgstr "" -msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." +msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_HOST’, ‘$HARBOR_OCI’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." msgstr "" msgid "HarborIntegration|Base URL of the Harbor instance." diff --git a/locale/zh_CN/gitlab.po b/locale/zh_CN/gitlab.po index aff38660b282dceb8f2138a7c5e19992490b69fa..e1349f0bd03dcbc0490078b7acf6e89b84b90622 100644 --- a/locale/zh_CN/gitlab.po +++ b/locale/zh_CN/gitlab.po @@ -18443,7 +18443,7 @@ msgstr "HTTP Basic:访问被拒ç»\\n您必须使用具有'api'æƒé™çš„个人 msgid "Harbor Registry" msgstr "Harbor 镜åƒåº“" -msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." +msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_HOST’, ‘$HARBOR_OCI’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." msgstr "å¯ç”¨ Harbor 集æˆåŽï¼Œå°†åˆ›å»ºå…¨å±€å˜é‡ “$HARBOR_USERNAMEâ€ã€â€œ$HARBOR_PASSWORDâ€ã€â€œ$HARBOR_URLâ€å’Œ “$HARBOR_PROJECT†供 CI/CD 使用。" msgid "HarborIntegration|Base URL of the Harbor instance." diff --git a/locale/zh_HK/gitlab.po b/locale/zh_HK/gitlab.po index 60c869d0320fff2d3edcfb008977bc689b32e797..065875ddad174d401d6e47efbfccf356e4f96040 100644 --- a/locale/zh_HK/gitlab.po +++ b/locale/zh_HK/gitlab.po @@ -18443,7 +18443,7 @@ msgstr "" msgid "Harbor Registry" msgstr "" -msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." +msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_HOST’, ‘$HARBOR_OCI’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." msgstr "" msgid "HarborIntegration|Base URL of the Harbor instance." diff --git a/locale/zh_TW/gitlab.po b/locale/zh_TW/gitlab.po index 26586a5a2ba2db0f9da1b162517ddfc1effc5b27..ed4196feb627bc17db4363a9bdcaa6856191f956 100644 --- a/locale/zh_TW/gitlab.po +++ b/locale/zh_TW/gitlab.po @@ -18443,7 +18443,7 @@ msgstr "" msgid "Harbor Registry" msgstr "" -msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." +msgid "HarborIntegration|After the Harbor integration is activated, global variables ‘$HARBOR_USERNAME’, ‘$HARBOR_HOST’, ‘$HARBOR_OCI’, ‘$HARBOR_PASSWORD’, ‘$HARBOR_URL’ and ‘$HARBOR_PROJECT’ will be created for CI/CD use." msgstr "" msgid "HarborIntegration|Base URL of the Harbor instance." diff --git a/spec/models/integrations/harbor_spec.rb b/spec/models/integrations/harbor_spec.rb index 9e3d4b524a699bc5bd5589700a844e468c71542e..2461bd6e672defa9aefdd810c25d2cae68d8bc82 100644 --- a/spec/models/integrations/harbor_spec.rb +++ b/spec/models/integrations/harbor_spec.rb @@ -55,6 +55,8 @@ it 'returns vars when harbor_integration is activated' do ci_vars = [ { key: 'HARBOR_URL', value: url }, + { key: 'HARBOR_HOST', value: 'demo.goharbor.io' }, + { key: 'HARBOR_OCI', value: 'oci://demo.goharbor.io' }, { key: 'HARBOR_PROJECT', value: project_name }, { key: 'HARBOR_USERNAME', value: username }, { key: 'HARBOR_PASSWORD', value: password, public: false, masked: true }