<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>question Re: NiFi Toolkit 2.0, the nifi create-reg-client command does not provide a parameter to specify the registry client type GitLabFlowRegistryClient 2.0.0 in Support Questions</title>
    <link>https://community.cloudera.com/t5/Support-Questions/NiFi-Toolkit-2-0-the-nifi-create-reg-client-command-does-not/m-p/399449#M250489</link>
    <description>&lt;P&gt;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/122881"&gt;@wkwi&lt;/a&gt;&amp;nbsp;Welcome to the Cloudera Community!&lt;BR /&gt;&lt;BR /&gt;To help you get the best possible solution, I have tagged our NiFi experts&amp;nbsp;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/35454"&gt;@MattWho&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/38301"&gt;@mburgess&lt;/a&gt;&amp;nbsp;&amp;nbsp;who may be able to assist you further.&lt;BR /&gt;&lt;BR /&gt;Please keep us updated on your post, and we hope you find a satisfactory solution to your query.&lt;/P&gt;</description>
    <pubDate>Mon, 30 Dec 2024 14:23:39 GMT</pubDate>
    <dc:creator>DianaTorres</dc:creator>
    <dc:date>2024-12-30T14:23:39Z</dc:date>
    <item>
      <title>NiFi Toolkit 2.0, the nifi create-reg-client command does not provide a parameter to specify the registry client type GitLabFlowRegistryClient 2.0.0</title>
      <link>https://community.cloudera.com/t5/Support-Questions/NiFi-Toolkit-2-0-the-nifi-create-reg-client-command-does-not/m-p/399417#M250487</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;In NiFi Toolkit 2.0, the &lt;EM&gt;&lt;STRONG&gt;nifi create-reg-client&lt;/STRONG&gt;&lt;/EM&gt; command does not provide a parameter to specify the registry client type (GitLabFlowRegistryClient 2.0.0 ). Are there any workarounds for setting up a registry client in the apache/nifi:2.0 Docker image for a CI pipeline?&lt;/P&gt;&lt;P&gt;Best regards&amp;nbsp;&lt;/P&gt;&lt;P&gt;Wojtek&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 28 Dec 2024 20:49:02 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/NiFi-Toolkit-2-0-the-nifi-create-reg-client-command-does-not/m-p/399417#M250487</guid>
      <dc:creator>wkwi</dc:creator>
      <dc:date>2024-12-28T20:49:02Z</dc:date>
    </item>
    <item>
      <title>Re: NiFi Toolkit 2.0, the nifi create-reg-client command does not provide a parameter to specify the registry client type GitLabFlowRegistryClient 2.0.0</title>
      <link>https://community.cloudera.com/t5/Support-Questions/NiFi-Toolkit-2-0-the-nifi-create-reg-client-command-does-not/m-p/399449#M250489</link>
      <description>&lt;P&gt;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/122881"&gt;@wkwi&lt;/a&gt;&amp;nbsp;Welcome to the Cloudera Community!&lt;BR /&gt;&lt;BR /&gt;To help you get the best possible solution, I have tagged our NiFi experts&amp;nbsp;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/35454"&gt;@MattWho&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/38301"&gt;@mburgess&lt;/a&gt;&amp;nbsp;&amp;nbsp;who may be able to assist you further.&lt;BR /&gt;&lt;BR /&gt;Please keep us updated on your post, and we hope you find a satisfactory solution to your query.&lt;/P&gt;</description>
      <pubDate>Mon, 30 Dec 2024 14:23:39 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/NiFi-Toolkit-2-0-the-nifi-create-reg-client-command-does-not/m-p/399449#M250489</guid>
      <dc:creator>DianaTorres</dc:creator>
      <dc:date>2024-12-30T14:23:39Z</dc:date>
    </item>
    <item>
      <title>Re: NiFi Toolkit 2.0, the nifi create-reg-client command does not provide a parameter to specify the registry client type GitLabFlowRegistryClient 2.0.0</title>
      <link>https://community.cloudera.com/t5/Support-Questions/NiFi-Toolkit-2-0-the-nifi-create-reg-client-command-does-not/m-p/399613#M250525</link>
      <description>&lt;P&gt;Edited:Fixed typo in snippet&lt;/P&gt;&lt;P&gt;This should work, although I haven't tested it yet&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;#!/bin/bash

#Request access token
my_token="$(curl "https://${NIFI_WEB_HTTPS_HOST:-$HOSTNAME}:${NIFI_WEB_HTTPS_PORT:-8443}/nifi-api/access/token?username=${SINGLE_USER_CREDENTIALS_USERNAME:-admin}&amp;amp;password=${SINGLE_USER_CREDENTIALS_PASSWORD:-password}" \
      -H 'Content-type:application/x-www-form-urlencoded' \
      -X POST)"

#Create gitlab registry client
curl "https://${NIFI_WEB_HTTPS_HOST:-$HOSTNAME}:${NIFI_WEB_HTTPS_PORT:-8443}/nifi-api/controller/registry-clients" \
  -H 'content-type: application/json' \
  -H "authorization: bearer ${my_token}" \
  --data-raw "{\"revision\":{\"version\":0},\"disconnectedNodeAcknowledged\":false,\"component\":{\"name\":\"${GITLAB_REGISTRY_CLIENT_NAME:-gitlab_reg_client}\",\"type\":\"org.apache.nifi.gitlab.GitLabFlowRegistryClient\",\"description\":\"${GITLAB_REGISTRY_CLIENT_DESCRIPTION:-gitlab_reg_description}\", \"properties\":{\"GitLab API URL\":\"https://${GITLAB_REGISTRY_WEB_HTTPS_HOST:-gitlab.com}:${GITLAB_REGISTRY_WEB_HTTPS_HOST:-443}\",\"Repository Namespace\":\"${GITLAB_REGISTRY_CLIENT_REPOSITORY_NAMESPACE:-default}\",\"Repository Name\":\"${GITLAB_REGISTRY_CLIENT_REPOSITORY_NAME:-default}\",\"Access Token\":\"${GITLAB_REGISTRY_CLIENT_REPOSITORY_ACESS_TOKEN:-insert-your-token}\"}}}" &lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;Best regards&lt;/P&gt;&lt;P&gt;Wojtek&lt;/P&gt;</description>
      <pubDate>Sun, 05 Jan 2025 15:47:07 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/NiFi-Toolkit-2-0-the-nifi-create-reg-client-command-does-not/m-p/399613#M250525</guid>
      <dc:creator>wkwi</dc:creator>
      <dc:date>2025-01-05T15:47:07Z</dc:date>
    </item>
  </channel>
</rss>

