kaqing 2.0.42__py3-none-any.whl → 2.0.44__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- adam/commands/cd.py +1 -1
- adam/commands/cql_utils.py +1 -1
- adam/commands/ls.py +1 -3
- adam/commands/postgres/postgres.py +4 -16
- adam/commands/postgres/postgres_completions.py +24 -0
- adam/commands/postgres/postgres_session.py +0 -8
- adam/commands/postgres/{pg_utils.py → postgres_utils.py} +5 -0
- adam/commands/preview_table.py +1 -3
- adam/commands/reaper/reaper_session.py +1 -1
- adam/k8s_utils/statefulsets.py +1 -0
- adam/pg_table_completer.py +77 -0
- adam/repl.py +3 -2
- adam/version.py +1 -1
- {kaqing-2.0.42.dist-info → kaqing-2.0.44.dist-info}/METADATA +1 -1
- {kaqing-2.0.42.dist-info → kaqing-2.0.44.dist-info}/RECORD +18 -16
- {kaqing-2.0.42.dist-info → kaqing-2.0.44.dist-info}/WHEEL +0 -0
- {kaqing-2.0.42.dist-info → kaqing-2.0.44.dist-info}/entry_points.txt +0 -0
- {kaqing-2.0.42.dist-info → kaqing-2.0.44.dist-info}/top_level.txt +0 -0
adam/commands/cd.py
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
from adam.commands.command import Command
|
2
|
-
from adam.commands.postgres.
|
2
|
+
from adam.commands.postgres.postgres_utils import pg_database_names
|
3
3
|
from adam.commands.postgres.postgres_session import PostgresSession
|
4
4
|
from adam.k8s_utils.cassandra_clusters import CassandraClusters
|
5
5
|
from adam.k8s_utils.kube_context import KubeContext
|
adam/commands/cql_utils.py
CHANGED
@@ -11,7 +11,7 @@ from adam.utils import log2
|
|
11
11
|
|
12
12
|
@functools.lru_cache()
|
13
13
|
def keyspaces(state: ReplState, on_any=False):
|
14
|
-
Config().wait_log(
|
14
|
+
Config().wait_log('Inspecting Cassandra Keyspaces...')
|
15
15
|
|
16
16
|
r: list[PodExecResult] = run_cql(state, 'describe keyspaces', show_out=False, on_any=on_any)
|
17
17
|
if not r:
|
adam/commands/ls.py
CHANGED
@@ -1,16 +1,14 @@
|
|
1
1
|
import copy
|
2
|
-
import re
|
3
2
|
|
4
3
|
from adam.commands.command import Command
|
5
4
|
from adam.commands.commands_utils import show_pods, show_rollout
|
6
5
|
from adam.commands.cqlsh import Cqlsh
|
7
|
-
from adam.commands.postgres.
|
6
|
+
from adam.commands.postgres.postgres_utils import pg_database_names, pg_table_names
|
8
7
|
from adam.commands.postgres.postgres_session import PostgresSession
|
9
8
|
from adam.config import Config
|
10
9
|
from adam.k8s_utils.custom_resources import CustomResources
|
11
10
|
from adam.k8s_utils.ingresses import Ingresses
|
12
11
|
from adam.k8s_utils.kube_context import KubeContext
|
13
|
-
from adam.k8s_utils.services import Services
|
14
12
|
from adam.k8s_utils.statefulsets import StatefulSets
|
15
13
|
from adam.pod_exec_result import PodExecResult
|
16
14
|
from adam.repl_state import ReplState
|
@@ -1,8 +1,8 @@
|
|
1
|
-
import functools
|
2
1
|
import click
|
3
2
|
|
4
3
|
from adam.commands.command import Command
|
5
|
-
from adam.commands.postgres.
|
4
|
+
from adam.commands.postgres.postgres_completions import pg_completions
|
5
|
+
from adam.commands.postgres.postgres_utils import pg_table_names
|
6
6
|
from .postgres_ls import PostgresLs
|
7
7
|
from .postgres_preview import PostgresPreview
|
8
8
|
from .postgres_session import PostgresSession
|
@@ -68,20 +68,8 @@ class Postgres(Command):
|
|
68
68
|
leaf = {}
|
69
69
|
session = PostgresSession(state.namespace, state.pg_path)
|
70
70
|
if session.db:
|
71
|
-
if
|
72
|
-
leaf =
|
73
|
-
'\h': None,
|
74
|
-
'\d': None,
|
75
|
-
'\dt': None,
|
76
|
-
'\du': None,
|
77
|
-
'delete': {'from': {t: {'where': {'id': {'=': None}}} for t in tables}},
|
78
|
-
'insert': {'into': {t: {'values': None} for t in tables}},
|
79
|
-
'select': {'*': {'from': {t: {
|
80
|
-
'limit': {'1': None},
|
81
|
-
'where': {'id': {'=': None}}
|
82
|
-
} for t in tables}}},
|
83
|
-
'update': {t: {'set': None} for t in tables},
|
84
|
-
}
|
71
|
+
if pg_table_names(state.namespace, state.pg_path):
|
72
|
+
leaf = pg_completions(state.namespace, state.pg_path)
|
85
73
|
elif state.pg_path:
|
86
74
|
leaf = {
|
87
75
|
'\h': None,
|
@@ -0,0 +1,24 @@
|
|
1
|
+
from adam.pg_table_completer import PgTableCompleter
|
2
|
+
|
3
|
+
def pg_completions(ns: str, pg_path: str):
|
4
|
+
table = PgTableCompleter(ns, pg_path)
|
5
|
+
return {
|
6
|
+
'\h': None,
|
7
|
+
'\d': None,
|
8
|
+
'\dt': None,
|
9
|
+
'\du': None,
|
10
|
+
# 'delete': {'from': {ts: {'where': {'id': {'=': None}}}}},
|
11
|
+
# 'insert': {'into': {ts: {'values': None}}},
|
12
|
+
# 'select': {'*': {'from': {ts: {
|
13
|
+
# 'limit': {'1': None},
|
14
|
+
# 'where': {'id': {'=': None}}
|
15
|
+
# }}}},
|
16
|
+
# 'update': {ts: {'set': None}},
|
17
|
+
'delete': {'from': table.nested({'where': {'id': {'=': None}}})},
|
18
|
+
'insert': {'into': table.nested({'values': None})},
|
19
|
+
'select': {'*': {'from': table.nested({
|
20
|
+
'limit': {'1': None},
|
21
|
+
'where': {'id': {'=': None}}
|
22
|
+
})}},
|
23
|
+
'update': table.nested({'set': None}),
|
24
|
+
}
|
@@ -25,13 +25,6 @@ class PostgresSession:
|
|
25
25
|
if len(tks) > 1:
|
26
26
|
self.db = tks[1]
|
27
27
|
|
28
|
-
# works only for databases()
|
29
|
-
def __eq__(self, other: 'PostgresSession'):
|
30
|
-
return self.host == other.host
|
31
|
-
|
32
|
-
def __hash__(self):
|
33
|
-
return hash(self.host)
|
34
|
-
|
35
28
|
def find_namespace(self, arg: str):
|
36
29
|
if arg:
|
37
30
|
tks = arg.split('@')
|
@@ -82,7 +75,6 @@ class PostgresSession:
|
|
82
75
|
|
83
76
|
return [s for s in ss if not excludes(s)]
|
84
77
|
|
85
|
-
@functools.lru_cache()
|
86
78
|
def databases(self):
|
87
79
|
dbs = []
|
88
80
|
# List of databases
|
@@ -1,13 +1,18 @@
|
|
1
1
|
import functools
|
2
2
|
|
3
3
|
from adam.commands.postgres.postgres_session import PostgresSession
|
4
|
+
from adam.config import Config
|
4
5
|
|
6
|
+
@functools.lru_cache()
|
5
7
|
def pg_database_names(ns: str, pg_path: str):
|
8
|
+
Config().wait_log('Inspecting Postgres Databases...')
|
9
|
+
|
6
10
|
pg = PostgresSession(ns, pg_path)
|
7
11
|
return [db['name'] for db in pg.databases() if db['owner'] == PostgresSession.default_owner()]
|
8
12
|
|
9
13
|
@functools.lru_cache()
|
10
14
|
def pg_table_names(ns: str, pg_path: str):
|
15
|
+
Config().wait_log('Inspecting Postgres Database...')
|
11
16
|
return [table['name'] for table in pg_tables(ns, pg_path) if table['schema'] == PostgresSession.default_schema()]
|
12
17
|
|
13
18
|
def pg_tables(ns: str, pg_path: str):
|
adam/commands/preview_table.py
CHANGED
@@ -2,7 +2,6 @@ import functools
|
|
2
2
|
|
3
3
|
from adam.commands.command import Command
|
4
4
|
from adam.commands.cql_utils import run_cql, tables
|
5
|
-
from adam.commands.postgres.pg_utils import pg_table_names
|
6
5
|
from adam.commands.postgres.postgres_session import PostgresSession
|
7
6
|
from adam.config import Config
|
8
7
|
from adam.repl_state import ReplState, RequiredState
|
@@ -72,8 +71,7 @@ class PreviewTable(Command):
|
|
72
71
|
|
73
72
|
def completion(self, state: ReplState):
|
74
73
|
if state.device == ReplState.P:
|
75
|
-
|
76
|
-
return {PreviewTable.COMMAND: {table: None for table in tables}}
|
74
|
+
return {PreviewTable.COMMAND: {f'<pg_tables:{state.namespace}:{state.pg_path}>': None}}
|
77
75
|
elif state.sts:
|
78
76
|
tables = PreviewTable.cql_tables(state)
|
79
77
|
return {PreviewTable.COMMAND: {f'{k}.{t}': None for k, ts in tables.items() for t in ts}}
|
@@ -149,7 +149,7 @@ class ReaperSession:
|
|
149
149
|
return ReaperSession.schedules_ids_by_cluster[state.sts]
|
150
150
|
|
151
151
|
if reaper := ReaperSession.create(state):
|
152
|
-
Config().wait_log(
|
152
|
+
Config().wait_log('Inspecting Cassandra Reaper...')
|
153
153
|
|
154
154
|
schedules = reaper.schedule_ids(state, show_output = False)
|
155
155
|
ReaperSession.schedules_ids_by_cluster[state.sts] = schedules
|
adam/k8s_utils/statefulsets.py
CHANGED
@@ -0,0 +1,77 @@
|
|
1
|
+
from typing import Any, Dict, Iterable, Mapping, Optional, Set, Union
|
2
|
+
from prompt_toolkit.completion import CompleteEvent, Completer, Completion, NestedCompleter, WordCompleter
|
3
|
+
from prompt_toolkit.document import Document
|
4
|
+
|
5
|
+
from adam.commands.postgres.postgres_utils import pg_table_names
|
6
|
+
|
7
|
+
NestedDict = Mapping[str, Union[Any, Set[str], None, Completer]]
|
8
|
+
|
9
|
+
class PgTableCompleter(Completer):
|
10
|
+
def __init__(self, namespace: str, pg_path: str, nested_dict: NestedDict = None, ignore_case: bool = True):
|
11
|
+
self.namespace = namespace
|
12
|
+
self.pg_path = pg_path
|
13
|
+
self.ignore_case = ignore_case
|
14
|
+
if nested_dict:
|
15
|
+
self.append_nested_dict(nested_dict)
|
16
|
+
|
17
|
+
def __repr__(self) -> str:
|
18
|
+
return "PgTableCompleter(%r, pg_path=%r)" % (self.namespace, self.pg_path)
|
19
|
+
|
20
|
+
def nested(self, data: NestedDict):
|
21
|
+
return PgTableCompleter(self.namespace, self.pg_path).append_nested_dict(data)
|
22
|
+
|
23
|
+
def append_nested_dict(self, data: NestedDict) -> "PgTableCompleter":
|
24
|
+
options: Dict[str, Optional[Completer]] = {}
|
25
|
+
for key, value in data.items():
|
26
|
+
if isinstance(value, Completer):
|
27
|
+
options[key] = value
|
28
|
+
elif isinstance(value, dict):
|
29
|
+
options[key] = NestedCompleter.from_nested_dict(value)
|
30
|
+
elif isinstance(value, set):
|
31
|
+
options[key] = NestedCompleter.from_nested_dict({item: None for item in value})
|
32
|
+
else:
|
33
|
+
assert value is None
|
34
|
+
options[key] = None
|
35
|
+
|
36
|
+
self.options = options
|
37
|
+
|
38
|
+
return self
|
39
|
+
|
40
|
+
def get_completions(
|
41
|
+
self, document: Document, complete_event: CompleteEvent
|
42
|
+
) -> Iterable[Completion]:
|
43
|
+
text = document.text_before_cursor.lstrip()
|
44
|
+
stripped_len = len(document.text_before_cursor) - len(text)
|
45
|
+
|
46
|
+
if " " in text:
|
47
|
+
second_term = None
|
48
|
+
tokens = text.split()
|
49
|
+
if len(tokens) > 1:
|
50
|
+
second_term = tokens[1]
|
51
|
+
if second_term:
|
52
|
+
completer = self.options.get(second_term)
|
53
|
+
|
54
|
+
if completer is not None:
|
55
|
+
first_term = tokens[0]
|
56
|
+
remaining_text = text[len(first_term) :].lstrip()
|
57
|
+
move_cursor = len(text) - len(remaining_text) + stripped_len
|
58
|
+
|
59
|
+
remaining_text = remaining_text[len(second_term) :].lstrip()
|
60
|
+
move_cursor = len(text) - len(remaining_text) + stripped_len
|
61
|
+
|
62
|
+
new_document = Document(
|
63
|
+
remaining_text,
|
64
|
+
cursor_position=document.cursor_position - move_cursor,
|
65
|
+
)
|
66
|
+
|
67
|
+
for c in completer.get_completions(new_document, complete_event):
|
68
|
+
yield c
|
69
|
+
else:
|
70
|
+
completer = WordCompleter(
|
71
|
+
list(self.options.keys()), ignore_case=self.ignore_case
|
72
|
+
)
|
73
|
+
for c in completer.get_completions(document, complete_event):
|
74
|
+
yield c
|
75
|
+
else:
|
76
|
+
for t in pg_table_names(self.namespace, self.pg_path):
|
77
|
+
yield Completion(t)
|
adam/repl.py
CHANGED
@@ -105,8 +105,9 @@ def enter_repl(state: ReplState):
|
|
105
105
|
completions = deep_sort_dict(deep_merge_dicts(completions, cmd.completion(state)))
|
106
106
|
finally:
|
107
107
|
if Config().get('debugs.timings', False):
|
108
|
-
|
108
|
+
log2(f'Timing auto-completion-calc {cmd.command()}: {time.time() - s1:.2f}')
|
109
109
|
|
110
|
+
# print(json.dumps(completions, indent=4))
|
110
111
|
completer = NestedCompleter.from_nested_dict(completions)
|
111
112
|
|
112
113
|
cmd = session.prompt(prompt_msg(), completer=completer, key_bindings=kb)
|
@@ -153,7 +154,7 @@ def enter_repl(state: ReplState):
|
|
153
154
|
finally:
|
154
155
|
Config().clear_wait_log_flag()
|
155
156
|
if Config().get('debugs.timings', False) and 'cmd' in locals() and 's0' in locals():
|
156
|
-
|
157
|
+
log2(f'Timing command {cmd}: {time.time() - s0:.2f}')
|
157
158
|
|
158
159
|
@cli.command(context_settings=dict(ignore_unknown_options=True, allow_extra_args=True), cls=ClusterCommandHelper, help="Enter interactive shell.")
|
159
160
|
@click.option('--kubeconfig', '-k', required=False, metavar='path', help='path to kubeconfig file')
|
adam/version.py
CHANGED
@@ -8,13 +8,14 @@ adam/config.py,sha256=5v8tf98SPnb9Mmn9EzxV1_EbjVrHo1ElkvyHpFMfbzk,2783
|
|
8
8
|
adam/embedded_apps.py,sha256=lKPx63mKzJbNmwz0rgL4gF76M9fDGxraYTtNAIGnZ_s,419
|
9
9
|
adam/embedded_params.py,sha256=_9tBKpkSzBfzm-s3tUgZs8DcSVBnPA1iumG0ZRCbZIs,4586
|
10
10
|
adam/log.py,sha256=gg5DK52wLPc9cjykeh0WFHyAk1qI3HEpGaAK8W2dzXY,1146
|
11
|
+
adam/pg_table_completer.py,sha256=XSG8aT04q4RH2_TqNIyP2zhApDcHH8BQq3DAYUvt5ZM,3140
|
11
12
|
adam/pod_exec_result.py,sha256=nq0xnCNOpUGBSijGF0H-YNrwBc9vUQs4DkvLMIFS5LQ,951
|
12
|
-
adam/repl.py,sha256=
|
13
|
+
adam/repl.py,sha256=X9ga1iZFIXADQxBXvztFyVNBrfBRxiFLxTUYkm11img,7328
|
13
14
|
adam/repl_commands.py,sha256=aH7xxbsQGrpL9Ozk9QF54iToK6wbDT3Pu9rMyw9sDBY,4719
|
14
15
|
adam/repl_session.py,sha256=uIogcvWBh7wd8QQ-p_JgLsyJ8YJgINw5vOd6JIsd7Vo,472
|
15
16
|
adam/repl_state.py,sha256=591d7gV6uQSFtm7IWdlIYAHjfAzs9bdvIkwlIAeKddE,7540
|
16
17
|
adam/utils.py,sha256=2DoWsrcaioFFH0-RjT30qelVRPUJqCGTfz_ucfE7F8g,7406
|
17
|
-
adam/version.py,sha256=
|
18
|
+
adam/version.py,sha256=WZV5dDTmwvzrae-ufWoxplNySz6Dy2dl8OGMKbrja2k,139
|
18
19
|
adam/checks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
19
20
|
adam/checks/check.py,sha256=Qopr3huYcMu2bzQgb99dEUYjFzkjKHRI76S6KA9b9Rk,702
|
20
21
|
adam/checks/check_context.py,sha256=FEHkQ32jY1EDopQ2uYWqy9v7aEEX1orLpJWhopwAlh4,402
|
@@ -51,14 +52,14 @@ adam/commands/alter_tables.py,sha256=Y5cWg0Ow93rIDusbHgxQcC7sSB64LmULTlDxPLybiVM
|
|
51
52
|
adam/commands/app.py,sha256=7alV8wK801t67_rUe6EmhtHJTl-6K7fGCm6Uz1dDgpM,1963
|
52
53
|
adam/commands/app_ping.py,sha256=Xk7cfefphXM2w-UvpnhNUTZ3BU38f0deehUb2FEyLCI,1337
|
53
54
|
adam/commands/bash.py,sha256=1O9cCl9JHQdttqNAgdB44rO0NjCqHzHv4psAEQMJcjw,2714
|
54
|
-
adam/commands/cd.py,sha256=
|
55
|
+
adam/commands/cd.py,sha256=wJdfCzA2939PpGx4xKsfDxiu-64OC9SecgPDb7nd4O0,4582
|
55
56
|
adam/commands/check.py,sha256=853FPfgTMGxQXI_5UaPAtzaSWB_BvEVm48EkJhsHe4w,2181
|
56
57
|
adam/commands/cli_commands.py,sha256=PEEyrG9yz7RAEZwHbbuFpyE3fVi8vrIWbr0d1H0Gp9o,3620
|
57
58
|
adam/commands/command.py,sha256=Ph7IduCTGQ04dcwNegl1ekYbqCzOwAOYeWZVIRWnKyU,3958
|
58
59
|
adam/commands/command_helpers.py,sha256=leOJJK1UXczNTJHN9TGMCbIpUpmpreULvQ-TvnsYS7w,1134
|
59
60
|
adam/commands/commands_utils.py,sha256=ShUcxtDSd9B3NM0GDj3NBvKdmjCGY8qXgeUJpzNF63E,3122
|
60
61
|
adam/commands/cp.py,sha256=dyQViRDPNqsKRkxPb7WyEVIBNw7YB6IfYa2q3VtfzyA,3107
|
61
|
-
adam/commands/cql_utils.py,sha256=
|
62
|
+
adam/commands/cql_utils.py,sha256=q5hzAUVh7h8iVVH2s0M4E76zWqaMUDXULMn412mfHII,3893
|
62
63
|
adam/commands/cqlsh.py,sha256=PknA1I13E4L6leSq6TC3fsyJw_bugo6376q0FE0Ufz0,3088
|
63
64
|
adam/commands/devices.py,sha256=_f8j6aQzTL8_pFlWYawRuG2Ju1zPjYSPcRIlLnZng10,2397
|
64
65
|
adam/commands/exit.py,sha256=5MWUAmzYBlsrp0CoiTDB13SUkX9Ya18UlGeOIPia6TA,798
|
@@ -66,12 +67,12 @@ adam/commands/help.py,sha256=Ey3R1X8w_CMhdADI0t8dSQ28euhDHheJm7NermiGni4,1645
|
|
66
67
|
adam/commands/issues.py,sha256=VS-PC7e-2lywsa-lbmoUX8IY77OPGzFudwbw1g8XmQc,2599
|
67
68
|
adam/commands/login.py,sha256=bj95WWIF7mJDJhnyS9T8xvaZUGL37dj7GlH8TgmODbk,1877
|
68
69
|
adam/commands/logs.py,sha256=T-O9DYXmWEm4G1I5SM6MwyeRwq2aT-WMqNW0XA2MWmo,1165
|
69
|
-
adam/commands/ls.py,sha256=
|
70
|
+
adam/commands/ls.py,sha256=X_dSitiwMsKh6wi5P6OdF50a5eUCFv_-Huem7Qzff_s,5572
|
70
71
|
adam/commands/nodetool.py,sha256=HV9yDzMhRjS4lw6UfV7Hc1pcmeSx5a1jU6cAEKSZ1Bg,2334
|
71
72
|
adam/commands/nodetool_commands.py,sha256=5IgWC3rmeDD1cgwqQjiiWzi-wJpJ3n_8pAzz_9phXuk,2635
|
72
73
|
adam/commands/param_get.py,sha256=kPAAppK2T0tEFRnSIVFLDPIIGHhgLA7drJhn8TRyvvE,1305
|
73
74
|
adam/commands/param_set.py,sha256=QDIuqfU80aWCB16OK49yf7XRaRTWwiLkwMsJuVikq9I,1271
|
74
|
-
adam/commands/preview_table.py,sha256=
|
75
|
+
adam/commands/preview_table.py,sha256=UOquEHPg5Oj5VuzB6WVldicU0WTNqPVqEf6rPdfDB2o,2971
|
75
76
|
adam/commands/pwd.py,sha256=VlgFjxFl66I7Df1YI6cuiEeY6Q13lEavMKfrzHLESKo,2340
|
76
77
|
adam/commands/report.py,sha256=Ky45LIzSlB_X4V12JZWjU3SA2u4_FKRencRTq7psOWU,1944
|
77
78
|
adam/commands/restart.py,sha256=Hik1t5rjH2ATZv4tzwrGB3e44b3dNuATgY327_Nb8Bs,2044
|
@@ -104,11 +105,12 @@ adam/commands/medusa/medusa_restore.py,sha256=MU47bmozrjfGJ6GVkj_OVgLH6Uz_fGh03M
|
|
104
105
|
adam/commands/medusa/medusa_show_backupjobs.py,sha256=QekHpKezVJdgfa9hOxfgyx-y4D08tmHzyu_AAa8QPR0,1756
|
105
106
|
adam/commands/medusa/medusa_show_restorejobs.py,sha256=wgPonSmC6buDIp3k3WUY-Yu2MyP1xyE3Q_XhvAwpnx4,1651
|
106
107
|
adam/commands/postgres/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
107
|
-
adam/commands/postgres/
|
108
|
-
adam/commands/postgres/
|
108
|
+
adam/commands/postgres/postgres.py,sha256=5WNX4T0S_EsEC6CDCOQWXQG96jfIYQhubedpe2MrNNE,3038
|
109
|
+
adam/commands/postgres/postgres_completions.py,sha256=dnnQ7qcw7Cev2ds03q9ydz49oaqsTvjo1GEB5cE2Lzw,857
|
109
110
|
adam/commands/postgres/postgres_ls.py,sha256=HwZTgwGKXUqHX33S8aQPF6FqCrLqtoz4cLyJV2SpoE0,1186
|
110
111
|
adam/commands/postgres/postgres_preview.py,sha256=MLzdEc4mvNj6V1Q8jO5OPznXyYELJHgd35_eQgLlNIU,1274
|
111
|
-
adam/commands/postgres/postgres_session.py,sha256=
|
112
|
+
adam/commands/postgres/postgres_session.py,sha256=RcqkCgtA78M-9LKTwG6pp8n9JwjmURXgf1FknIIPl9g,9305
|
113
|
+
adam/commands/postgres/postgres_utils.py,sha256=fdE-fZrT-fY5Ehdfhf6b0yuRs-uYmkKONXGhrNMBSbc,757
|
112
114
|
adam/commands/reaper/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
113
115
|
adam/commands/reaper/reaper.py,sha256=83R0ZRitEwaYKKssfKxn3zAzLnWIP9QKd1mA6awceS8,1908
|
114
116
|
adam/commands/reaper/reaper_forward.py,sha256=mUp409MzT91cVXGxoPfBGceaR3qZ0rVdWKGdyzPNzSA,3177
|
@@ -121,7 +123,7 @@ adam/commands/reaper/reaper_schedule_activate.py,sha256=HbwaSeKaDoR2qgiWgglwM5gm
|
|
121
123
|
adam/commands/reaper/reaper_schedule_start.py,sha256=oDwH99QVyeKgu-jk5-pB7BzUH_rablCbtumNHXjBnpU,1940
|
122
124
|
adam/commands/reaper/reaper_schedule_stop.py,sha256=_Ld5BRX5pqfIis5i1KG8yif0q5u9RTaFBmmQwkZuOMY,1929
|
123
125
|
adam/commands/reaper/reaper_schedules.py,sha256=-b7eKl0wJT7zMru8qKcLqG5JF0-LfeTcNmlxut9t93E,1263
|
124
|
-
adam/commands/reaper/reaper_session.py,sha256=
|
126
|
+
adam/commands/reaper/reaper_session.py,sha256=LfPbE9Czr3bwBnnk4Pvf4btnuqEzPbDw2GPDKYp_2dI,6650
|
125
127
|
adam/commands/reaper/reaper_status.py,sha256=g3Uep1AVYOThAaZoFjn4bWTKHElZnCleJyYYHP9HayY,1967
|
126
128
|
adam/commands/repair/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
127
129
|
adam/commands/repair/repair.py,sha256=Z284AKjUupQ-Uul5xDVr_ljfiXJ0VmAXsrlhLPjRp5A,1315
|
@@ -156,7 +158,7 @@ adam/k8s_utils/pods.py,sha256=ljn5tB-j8bdof6X_YWS9Hf5cjAzwmYw61I9_0bwIjCc,10540
|
|
156
158
|
adam/k8s_utils/secrets.py,sha256=pYaVKXTpx3-QgFtBjznWFq0N6ZcBdxnx21FRe5nBCCo,2305
|
157
159
|
adam/k8s_utils/service_accounts.py,sha256=v2oQSqCrNvt2uRnKlNwR3fjtpUG7oF5nqgzEB7NnT-U,6349
|
158
160
|
adam/k8s_utils/services.py,sha256=EOJJGACVbbRvu5T3rMKqIJqgYic1_MSJ17EA0TJ6UOk,3156
|
159
|
-
adam/k8s_utils/statefulsets.py,sha256=
|
161
|
+
adam/k8s_utils/statefulsets.py,sha256=hiBOmJZ3KTI6_naAFzNoW1NoYnnBG35BZ7RMdPhNC6o,4664
|
160
162
|
adam/k8s_utils/volumes.py,sha256=RIBmlOSWM3V3QVXLCFT0owVOyh4rGG1ETp521a-6ndo,1137
|
161
163
|
adam/sso/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
162
164
|
adam/sso/authenticator.py,sha256=BCm16L9zf5aLU47-sTCnudn2zLPwd8M2wwRminJfsqw,615
|
@@ -168,8 +170,8 @@ adam/sso/idp.py,sha256=fvcwUw_URTgsO6ySaqTIw0zQT2qRO1IPSGhf6rPtybo,5804
|
|
168
170
|
adam/sso/idp_login.py,sha256=QAtCUeDTVWliJy40RK_oac8Vgybr13xH8wzeBoxPaa8,1754
|
169
171
|
adam/sso/idp_session.py,sha256=9BUHNRf70u4rVKrVY1HKPOEmOviXvkjam8WJxmXSKIM,1735
|
170
172
|
adam/sso/sso_config.py,sha256=5N8WZgIJQBtHUy585XLRWKjpU87_v6QluyNK9E27D5s,2459
|
171
|
-
kaqing-2.0.
|
172
|
-
kaqing-2.0.
|
173
|
-
kaqing-2.0.
|
174
|
-
kaqing-2.0.
|
175
|
-
kaqing-2.0.
|
173
|
+
kaqing-2.0.44.dist-info/METADATA,sha256=wcnMJLsBYC99ZwdqVVCSr8fcXXCavEvv_I-eMPGNJyw,132
|
174
|
+
kaqing-2.0.44.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
175
|
+
kaqing-2.0.44.dist-info/entry_points.txt,sha256=SkzhuQJUWsXOzHeZ5TgQ2c3_g53UGK23zzJU_JTZOZI,39
|
176
|
+
kaqing-2.0.44.dist-info/top_level.txt,sha256=8_2PZkwBb-xDcnc8a2rAbQeJhXKXskc7zTP7pSPa1fw,5
|
177
|
+
kaqing-2.0.44.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|