Skip to content

Commit 05d9f88

Browse files
committed
chore: clean up extra newlines from license formatting
also removed dashboard stuff, not used anymore use k9s instead added vscode launch config
1 parent 627092b commit 05d9f88

File tree

125 files changed

+69
-828
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

125 files changed

+69
-828
lines changed

.github/workflows/agentless-container.yaml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,6 @@
1818
# LICENSE END
1919
#
2020

21-
22-
23-
24-
25-
26-
2721
name: Build and push agentless container image
2822

2923
# Configures this workflow to run every time a tag is created

.github/workflows/commit-linting.yaml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,6 @@
1818
# LICENSE END
1919
#
2020

21-
22-
23-
24-
25-
26-
2721
name: Commit Linting
2822
on: pull_request
2923
jobs:

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
.cursorignore
22
.pytest_cache
3-
.vscode
43
.idea

.vscode/launch.json

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"name": "Debug Manager",
9+
"type": "go",
10+
"request": "launch",
11+
"mode": "debug",
12+
"program": "${workspaceRoot}/operator/cmd/main.go",
13+
"buildFlags": "--ldflags '-X github.com/NVIDIA/skyhook/internal/version.GIT_SHA=foobars -X github.com/NVIDIA/skyhook/internal/version.VERSION=v0.5.0'",
14+
"env": {
15+
"ENABLE_WEBHOOKS": "false",
16+
"LOG_ENCODER": "console",
17+
"REAPPLY_ON_REBOOT": "false",
18+
// "AGENT_IMAGE": "ghcr.io/nvidia/skyhook/agent:latest", // the real agent image, for testing actual packages
19+
"AGENT_IMAGE": "ghcr.io/nvidia/skyhook/agentless:6.2.0", // this is the mock image, if you need to test for real, use the real image.
20+
},
21+
"args": [],
22+
"showLog": true
23+
},
24+
{
25+
"name": "Test Current File",
26+
"type": "go",
27+
"request": "launch",
28+
"mode": "test",
29+
"program": "${file}",
30+
"env": {},
31+
"args": [],
32+
"showLog": true
33+
}
34+
]
35+
}

agent/skyhook-agent/src/skyhook_agent/__about__.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,4 @@
1818
# LICENSE END
1919
#
2020

21-
22-
23-
24-
25-
26-
27-
2821
__version__ = "0.0.0"

agent/skyhook-agent/src/skyhook_agent/__init__.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,3 @@
1717
#
1818
# LICENSE END
1919
#
20-
21-
22-
23-
24-
25-
26-
27-

agent/skyhook-agent/src/skyhook_agent/enums.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,6 @@
1818
# LICENSE END
1919
#
2020

21-
22-
23-
24-
25-
26-
27-
2821
from enum import Enum
2922

3023
class SortableEnum(Enum):

agent/skyhook-agent/src/skyhook_agent/interrupts.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,6 @@
1919
#
2020

2121

22-
23-
24-
25-
26-
27-
2822
import string
2923
import base64
3024
import json

agent/skyhook-agent/src/skyhook_agent/step.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,6 @@
1919
#
2020

2121

22-
23-
24-
25-
26-
27-
2822
from typing import IO
2923
from enum import Enum
3024
import json

agent/skyhook-agent/tests/__init__.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,3 @@
1717
#
1818
# LICENSE END
1919
#
20-
21-
22-
23-
24-
25-
26-
27-

0 commit comments

Comments
 (0)