You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spot.apache.org by na...@apache.org on 2018/03/19 15:13:04 UTC

[12/13] incubator-spot git commit: [SPOT-213] fix readme location and typo

[SPOT-213] fix readme location and typo


Project: http://git-wip-us.apache.org/repos/asf/incubator-spot/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-spot/commit/f594956e
Tree: http://git-wip-us.apache.org/repos/asf/incubator-spot/tree/f594956e
Diff: http://git-wip-us.apache.org/repos/asf/incubator-spot/diff/f594956e

Branch: refs/heads/master
Commit: f594956e2b7fa3cd5a09fe2ad2fa5bc697cf347a
Parents: 41e51b8
Author: natedogs911 <na...@gmail.com>
Authored: Tue Jan 23 12:10:54 2018 -0800
Committer: natedogs911 <na...@gmail.com>
Committed: Tue Jan 23 12:10:54 2018 -0800

----------------------------------------------------------------------
 spot-ingest/KERBEROS.md | 50 --------------------------------------------
 spot-setup/KERBEROS.md  | 50 ++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 50 insertions(+), 50 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-spot/blob/f594956e/spot-ingest/KERBEROS.md
----------------------------------------------------------------------
diff --git a/spot-ingest/KERBEROS.md b/spot-ingest/KERBEROS.md
deleted file mode 100644
index 2c4c034..0000000
--- a/spot-ingest/KERBEROS.md
+++ /dev/null
@@ -1,50 +0,0 @@
-## Kerberos support installation
-
-run the following in addition to the typical installation instructions
-
-### Spot-Ingest
-
-`pip install -r ./spot-ingest/kerberos-requirements.txt`
-
-### Spot-OA
-
-`pip install -r ./spot-ingest/kerberos-requirements.txt`
-
-
-## spot.conf
-
-KERBEROS       =  set `KERBEROS='true'` in /etc/spot.conf to enable kerberos
-KEYTAB         =  should be generated using `ktutil` or another approved method
-SASL_MECH      =  should be set to `sasl_plaintext` unless using ssl
-KAFKA_SERVICE  =  if not set defaults will be used
-
-SSL            =  enable ssl by setting to true
-SSL_VERIFY     =  by setting to `false` disables host checking **important** only recommended in non production environments
-CA_LOCATION    =  location of certificate authority file
-CERT           =  host certificate
-KEY            =  key required for host certificate
-
-sample below:
-
-```
-#kerberos config
-KERBEROS='true'
-KINIT=/usr/bin/kinit
-PRINCIPAL='spot'
-KEYTAB='/opt/security/spot.keytab'
-SASL_MECH='GSSAPI'
-SECURITY_PROTO='sasl_plaintext'
-KAFKA_SERVICE_NAME=''
-
-#ssl config
-SSL='false'
-SSL_VERIFY='true'
-CA_LOCATION=''
-CERT=''
-KEY=''
-
-```
-
-Please see [LIBRDKAFKA Configurations](https://github.com/edenhill/librdkafka/blob/master/CONFIGURATION.md)
-for reference to additional settings that can be set by modifying `spot-ingest/common/kafka_client.py`
-

http://git-wip-us.apache.org/repos/asf/incubator-spot/blob/f594956e/spot-setup/KERBEROS.md
----------------------------------------------------------------------
diff --git a/spot-setup/KERBEROS.md b/spot-setup/KERBEROS.md
new file mode 100644
index 0000000..a980d1c
--- /dev/null
+++ b/spot-setup/KERBEROS.md
@@ -0,0 +1,50 @@
+## Kerberos support installation
+
+run the following in addition to the typical installation instructions
+
+### Spot-Ingest
+
+`pip install -r ./spot-ingest/kerberos-requirements.txt`
+
+### Spot-OA
+
+`pip install -r ./spot-oa/kerberos-requirements.txt`
+
+
+## spot.conf
+
+KERBEROS       =  set `KERBEROS='true'` in /etc/spot.conf to enable kerberos
+KEYTAB         =  should be generated using `ktutil` or another approved method
+SASL_MECH      =  should be set to `sasl_plaintext` unless using ssl
+KAFKA_SERVICE  =  if not set defaults will be used
+
+SSL            =  enable ssl by setting to true
+SSL_VERIFY     =  by setting to `false` disables host checking **important** only recommended in non production environments
+CA_LOCATION    =  location of certificate authority file
+CERT           =  host certificate
+KEY            =  key required for host certificate
+
+sample below:
+
+```
+#kerberos config
+KERBEROS='true'
+KINIT=/usr/bin/kinit
+PRINCIPAL='spot'
+KEYTAB='/opt/security/spot.keytab'
+SASL_MECH='GSSAPI'
+SECURITY_PROTO='sasl_plaintext'
+KAFKA_SERVICE_NAME=''
+
+#ssl config
+SSL='false'
+SSL_VERIFY='true'
+CA_LOCATION=''
+CERT=''
+KEY=''
+
+```
+
+Please see [LIBRDKAFKA Configurations](https://github.com/edenhill/librdkafka/blob/master/CONFIGURATION.md)
+for reference to additional settings that can be set by modifying `spot-ingest/common/kafka_client.py`
+