Skip to content
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

Im rest #77

Open
wants to merge 44 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
1d2ae79
Implements: #76
micafer Nov 16, 2018
55d9a23
Add TOSCA support
micafer Nov 21, 2018
c46c834
Update im.py
micafer Nov 27, 2018
4c46d08
Fix error with #N# in dns_name
micafer Nov 12, 2019
8834a4d
Merge master
micafer Nov 12, 2019
8c84bef
Fix errors with tabs
micafer Feb 17, 2020
443f95b
Fix py3 issues
micafer Mar 16, 2021
d8c8245
Merge pull request #102 from grycap/master
micafer Mar 16, 2021
7dd50f0
Merge branch 'devel' into im_rest
micafer Apr 13, 2021
c512d57
Add inf id parameter
micafer May 4, 2021
02ef0a9
Add inf id parameter
micafer May 4, 2021
26b0e95
Fix error
micafer May 6, 2021
d0e5c73
Fix typo
micafer Sep 3, 2021
8ad6d46
Enable to set inf_id without the whole url
micafer Sep 8, 2021
bf2ee12
Enable contextualize
micafer Sep 14, 2021
0a6d23d
Merge branch 'im_rest' of https://github.com/grycap/clues into im_rest
micafer Sep 14, 2021
f042af6
Fix problem with log
micafer Sep 21, 2021
b07ac8a
Fix issues
micafer Sep 21, 2021
0a36191
Merge branch 'im_rest' of https://github.com/grycap/clues into im_rest
micafer Sep 21, 2021
8c329f2
use setuptools
micafer Jan 28, 2022
ff6517b
Update setup.py
micafer Jan 28, 2022
08a94a2
Update setup.py
micafer Feb 3, 2022
5a02ed1
Merge branch 'master' into im_rest
micafer Feb 3, 2022
2547d1a
Fix tests
micafer Feb 3, 2022
29d0c8a
Update setup.py
micafer Feb 7, 2022
ec2d84f
Add POW_ON state
micafer Feb 7, 2022
ca52d6a
Add slurm test and fix parse_scontrol
micafer Feb 8, 2022
01277d1
Merge branch 'master' into im_rest
micafer Feb 8, 2022
0cc539c
Add new IM test
micafer Feb 8, 2022
4c250f1
Add missing slurm test file
micafer Feb 8, 2022
52f3d51
Merge branch 'im_rest' of github.com:grycap/clues into im_rest
micafer Feb 8, 2022
c0e2da7
Fix py38 issues
micafer Jul 4, 2022
e364a1f
Update clues-slurm-wrapper
micafer Jul 4, 2022
88ae618
Add kube-flannel ns
micafer Sep 15, 2022
2be6c68
Merge branch 'im_rest' of github.com:grycap/clues into im_rest
micafer Sep 15, 2022
4d73886
Ignore daemonsets
micafer Oct 13, 2022
8986994
fix error
micafer Oct 13, 2022
da6c776
Improve mem config parse
micafer Oct 13, 2022
417e03d
Improve behavior with NoSchedule taint
micafer Mar 11, 2022
c09d10b
Add control-plane node
micafer Oct 13, 2022
50e7f02
Merge branch 'master' into im_rest
micafer Oct 13, 2022
dddbce7
Minor change
micafer Oct 14, 2022
7541b82
Update kubernetes.py
micafer Mar 13, 2023
758faaf
Update test_kubernetes.py
micafer Mar 14, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion clueslib/hooks.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
from .configlib import _CONFIGURATION_HOOKS

# cpyutils.log.Log.setup()

_LOGGER = cpyutils.log.Log("HOOKS")

class HookSystem:
Expand Down Expand Up @@ -108,4 +109,4 @@ def request(self, request):
try:
HOOKS
except:
HOOKS = HookSystem()
HOOKS = HookSystem()
Loading