-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add config map for krb5.conf and odbc.ini
add keytab NO_DOC=internal NO_TEST=internal NO_CHANGELOG=internal
- Loading branch information
Виталий Шунков
committed
Feb 19, 2024
1 parent
2ff7055
commit 79fb4d8
Showing
2 changed files
with
109 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
{{- if .Volumes }} | ||
--- | ||
apiVersion: v1 | ||
kind: ConfigMap | ||
metadata: | ||
name: krb5 | ||
namespace: tarantool | ||
data: | ||
krb5.conf: |+ | ||
[libdefaults] | ||
default_realm = CUD.INT | ||
allow_weak_crypto = true | ||
dns_lookup_kdc = false | ||
dns_lookup_realm = false | ||
ticket_lifetime = 86400 | ||
renew_lifetime = 604800 | ||
forwardable = true | ||
default_tgs_enctypes = rc4-hmac | ||
default_tkt_enctypes = rc4-hmac | ||
permitted_enctypes = rc4-hmac | ||
udp_preference_limit = 1 | ||
kdc_timeout = 3000 | ||
[realms] | ||
CUD.INT = { | ||
kdc = CUDINT217.cud.int | ||
admin_server = CUDINT217.cud.int | ||
} | ||
--- | ||
apiVersion: v1 | ||
kind: ConfigMap | ||
metadata: | ||
name: odbc | ||
namespace: tarantool | ||
data: | ||
odbc.ini: |+ | ||
[Cloudera Hive ODBC Driver 64-bit] | ||
Driver=Cloudera Hive ODBC Driver 64-bit | ||
Description=Hive Cloudera ODBC Driver | ||
Host=name02.cud.int | ||
Port=10000 | ||
Schema=default | ||
ServiceDiscoveryMode=0 | ||
HiveServerType=2 | ||
AuthMech=1 | ||
ThriftTransport=2 | ||
UseNativeQuery=0 | ||
UID=visiology-kauth | ||
KrbHostFQDN=cudint217.cud.int | ||
Keytab=/tmp/key.keytab | ||
GetTablesWithQuery=1 | ||
KrbServiceName=hive | ||
KrbRealm=CUD.INT | ||
KrbAuthType=0 | ||
SSL=0 | ||
--- | ||
{{- end }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters