Skip to content
This repository was archived by the owner on Jun 11, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/0-feature.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: "✨ New Feature"
about: Suggest an idea
title: "✨ "
labels: enhancement
assignees: "karthik1729"
assignees: "nxtcoder17"
projects: Kloudlite

---
Expand Down
5 changes: 2 additions & 3 deletions .github/ISSUE_TEMPLATE/1-bug.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,15 @@ name: "🐛 Bug Report"
about: Create a bug report to help us improve
title: "🐛 "
labels: bug
assignees: karthik1729
assignees: nxtcoder17
projects: kloudlite

---

### Describe the Bug
...

### To Reproduce
Steps to reproduce the behavior:
### How To Reproduce
1. ...
2. ...

Expand Down
16 changes: 16 additions & 0 deletions .tools/nvim/__http__/console/apps.graphql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ query: |+ #graphql
userId
userName
}
metadata {
name
annotations
}
syncStatus {
state
action
Expand Down Expand Up @@ -150,3 +154,15 @@ variables:
envName: "{{.envName}}"
appName: "{{.name}}"
---

---
label: restart app
query: |+
query Query($projectName: String!, $envName: String!, $appName: String!) {
core_restartApp(projectName: $projectName, envName: $envName, appName: $appName)
}
variables:
projectName: "{{.projectName}}"
envName: "{{.envName}}"
appName: "nginx"
---
29 changes: 29 additions & 0 deletions .tools/nvim/__http__/console/project-managed-services.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
---
label: list project managed services
query: |+
query Core_listProjectManagedServices($projectName: String!) {
core_listProjectManagedServices(projectName: $projectName) {
edges {
node {
metadata {
name
annotations
}
}
}
}
}
variables:
projectName: "{{.projectName}}"
---

label: restart project managed service
query: |+ #graphql
query Query($projectName: String!, $name: String!) {
core_restartProjectManagedService(projectName: $projectName, name: $name)
}
variables:
projectName: "{{.projectName}}"
name: "sampledbservice"

---
2 changes: 1 addition & 1 deletion .tools/nvim/__http__/infra/names.graphql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ query: |+
variables:
resType: vpn_device
# name: sample
name: saple
name: sample
---

label: Check Name Availability, with ClusterName
Expand Down
3 changes: 0 additions & 3 deletions TASKS.md

This file was deleted.

Loading