-
Notifications
You must be signed in to change notification settings - Fork 3.3k
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
Support HDFS Artifacts #1140
Comments
I have implemented the HDFS support in https://github.com/dtaniwaki/argo/tree/support-hdfs-artifacts but the HDFS go client error with kubernetes-HDFS, which I use for my local development, prevent me from testing Kerberos authentication. I'll wait or work with the repo owner of the client. |
I succeeded to use this HDFS artifact with the following patch for kubernetes-HDFS. diff --git a/charts/hdfs-config-k8s/templates/configmap.yaml b/charts/hdfs-config-k8s/templates/configmap.yaml
index 379dab8..f02b692 100644
--- a/charts/hdfs-config-k8s/templates/configmap.yaml
+++ b/charts/hdfs-config-k8s/templates/configmap.yaml
@@ -34,7 +34,7 @@ data:
</property>
<property>
<name>hadoop.rpc.protection</name>
- <value>privacy</value>
+ <value>authentication</value>
</property>
<property>
<name>hadoop.user.group.static.mapping.overrides</name>
@@ -74,7 +74,7 @@ data:
</property>
<property>
<name>dfs.encrypt.data.transfer</name>
- <value>true</value>
+ <value>false</value>
</property>
<property>
<name>dfs.namenode.kerberos.principal</name> |
This is done. Thanks @dtaniwaki ! |
@dtaniwaki Hi guys. Thanks for your great work. Could you share me how to config the ConfigMap to use HDFS? I can't find any doc for this case. |
@BobLiu20 |
* build: updated codegen Signed-off-by: Joshua Jorel Lee <[email protected]> * feat: added AzureEventHubsTrigger reference. Signed-off-by: Joshua Jorel Lee <[email protected]> * feat: added Azure Event Hubs trigger template context and creation. Signed-off-by: Joshua Jorel Lee <[email protected]> * feat: send events to Azure Event Hubs. Signed-off-by: Joshua Jorel Lee <[email protected]> * build: updated dependencies Signed-off-by: Joshua Jorel Lee <[email protected]> * doc: added azure event hubs example Signed-off-by: Joshua Jorel Lee <[email protected]> * docs: removed service account name reference Signed-off-by: Joshua Jorel Lee <[email protected]> * doc: fixed indentation. removed service account from the example. Signed-off-by: Joshua Jorel Lee <[email protected]>
Is this a BUG REPORT or FEATURE REQUEST?:
FEATURE REQUEST
What happened:
My company uses HDFS w/ Kerberos auth as a storage for artifacts and want to use it easily in argo.
Anything else we need to know?:
I'm implementing it, so I will send a PR.
I'm also adding the HDFS support in argo-events.
argoproj/argo-events#142
The text was updated successfully, but these errors were encountered: