This repository was archived by the owner on Jun 11, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Feat/build cache #306
Merged
Merged
Feat/build cache #306
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
ff58410
feat: updates graphql types, and resolvers
nxtcoder17 5279ada
:zap: Updated template for build-run caches
abdheshnayak a91c23e
feat(IAM): updates permissions for buildintegrations and buildruns
nxtcoder17 a85430a
feat(infra): BYOK cluster support
nxtcoder17 89e8308
feat: adds Builds with App, and improves app update
nxtcoder17 eda1bbd
feat(observability): migrating from go-fiber to `net/http`
nxtcoder17 624ae70
feat: websocket-server now stream logs from observability-api
nxtcoder17 418e68d
feat(container-registry): fixes cache key, get build, and build job
nxtcoder17 ce1eee7
feat(infra): updates and implements grpc services
nxtcoder17 b63c491
feat: adds net/http auth middlewares, and `ReadLogs` method for k8s api
nxtcoder17 78536a1
feat(gateway): Dockerfile updates, and deps updates
nxtcoder17 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
41 changes: 41 additions & 0 deletions
41
.tools/nvim/__http__/container-registry/build-runs.graphql.yml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,41 @@ | ||
| --- | ||
| global: | ||
| repoName: "" | ||
| crTriggerBuildId: "" | ||
| --- | ||
| label: "list repos" | ||
| query: |+ | ||
| query Cr_listRepos { | ||
| cr_listRepos { | ||
| edges { | ||
| node { | ||
| id | ||
| name | ||
| } | ||
| } | ||
| } | ||
| } | ||
| variables: {} | ||
| --- | ||
| query: |+ | ||
| query Cr_listBuilds($repoName: String!) { | ||
| cr_listBuilds(repoName: $repoName) { | ||
| edges { | ||
| node { | ||
| id | ||
| name | ||
| } | ||
| } | ||
| } | ||
| } | ||
| variables: | ||
| repoName: "{{.repoName}}" | ||
| --- | ||
|
|
||
| query: |+ | ||
| mutation Cr_triggerBuild($crTriggerBuildId: ID!) { | ||
| cr_triggerBuild(id: $crTriggerBuildId) | ||
| } | ||
| variables: | ||
| crTriggerBuildId: "{{.crTriggerBuildId}}" | ||
| --- |
46 changes: 46 additions & 0 deletions
46
.tools/nvim/__http__/container-registry/github-repos.graphql.yml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,46 @@ | ||
| --- | ||
| global: | ||
| organization: "" | ||
| installationId: "" | ||
| --- | ||
| query: |+ | ||
| query Cr_listGithubInstallations { | ||
| cr_listGithubInstallations { | ||
| id | ||
| # appId | ||
| # targetId | ||
| account { | ||
| id | ||
| login | ||
| } | ||
| } | ||
| } | ||
| --- | ||
| label: Search Github Repositories | ||
| query: |+ | ||
| query Cr_searchGithubRepos($organization: String!, $search: String!) { | ||
| cr_searchGithubRepos(organization: $organization, search: $search) { | ||
| repositories { | ||
| fullName | ||
| name | ||
| masterBranch | ||
| permissions | ||
| } | ||
| } | ||
| } | ||
| variables: | ||
| organization: '{{.organization}}' | ||
| search: '' | ||
| --- | ||
| label: List Github Repositories by Installation | ||
| query: |+ | ||
| query Cr_listGithubRepos($installationId: Int!) { | ||
| cr_listGithubRepos(installationId: $installationId) { | ||
| repositories { | ||
| name | ||
| } | ||
| } | ||
| } | ||
| variables: | ||
| installationId: '{{.installationId}}' | ||
| --- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| --- | ||
| label: Create BYOK Cluster | ||
| query: |+ #graphql | ||
| mutation Infra_createBYOKCluster($cluster: BYOKClusterIn!) { | ||
| infra_createBYOKCluster(cluster: $cluster) { | ||
| metadata { | ||
| name | ||
| } | ||
| } | ||
| } | ||
| variables: | ||
| cluster: | ||
| displayName: "{{.clusterName}}" | ||
| metadata: | ||
| name: "{{.clusterName}}" | ||
| --- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 12 additions & 0 deletions
12
.tools/nvim/__http__/message_office/clustertoken.graphql.yml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| --- | ||
| label: Generate Cluster Token | ||
| query: |+ #graphql | ||
| mutation GenerateClusterToken($accountName: String!, $clusterName: String!) { | ||
| generateClusterToken(accountName: $accountName, clusterName: $clusterName) | ||
| } | ||
| variables: | ||
| accountName: "{{.accountName}}" | ||
| clusterName: "{{.clusterName}}" | ||
|
|
||
| --- | ||
|
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
question (code_clarification): Commented out AWS specific fields in GraphQL query