Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Backend
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Arkindex
Backend
Merge requests
!2233
Remove Ponos from CE
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Remove Ponos from CE
move-ponos-ee
into
community
Overview
1
Commits
23
Pipelines
0
Changes
3
Merged
Valentin Rigal
requested to merge
move-ponos-ee
into
community
1 year ago
Overview
1
Commits
23
Pipelines
0
Changes
3
Expand
Based on
!2227 (merged)
TODO:
Remove & update tests
Edited
1 year ago
by
Valentin Rigal
0
0
Merge request reports
Viewing commit
5eda41ad
Show latest version
3 files
+
0
−
24
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
5eda41ad
Remove Ponos specific settings & configuration
· 5eda41ad
Valentin Rigal
authored
1 year ago
arkindex/project/checks.py
+
0
−
17
Options
@@ -78,23 +78,6 @@ def local_imageserver_check(*args, **kwargs):
return
[]
@register
()
@only_runserver
def
ponos_key_check
(
*
args
,
**
kwargs
):
"""
Warn about a missing Ponos private key that would prevent any Ponos agent from authenticating
"""
from
django.conf
import
settings
if
not
os
.
path
.
exists
(
settings
.
PONOS_PRIVATE_KEY
):
return
[
Warning
(
f
"
Ponos private key at
{
settings
.
PONOS_PRIVATE_KEY
}
not found.
"
"
Agents will be unable to connect to this server.
"
,
hint
=
f
"
`ponos.private_key` in
{
settings
.
CONFIG_PATH
}
"
,
id
=
"
arkindex.W007
"
,
)]
return
[]
@register
()
def
ponos_env_check
(
*
args
,
**
kwargs
):
"""
Loading