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

Features/release checklist #56

Merged
merged 2 commits into from
Dec 23, 2023
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
104 changes: 67 additions & 37 deletions gql-queries-generator/doc/queries.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -1446,7 +1446,6 @@ query consoleListVpnDevices($clusterName: String, $search: SearchVPNDevices, $pq
spec {
accountName
clusterName
dns
ports {
port
targetPort
Expand Down Expand Up @@ -1516,7 +1515,6 @@ query consoleGetVpnDevice($clusterName: String!, $name: String!) {
spec {
accountName
clusterName
dns
ports {
port
targetPort
Expand Down Expand Up @@ -1617,7 +1615,7 @@ mutation consoleRejectInvitation($accountName: String!, $inviteToken: String!) {
accounts_rejectInvitation(accountName: $accountName, inviteToken: $inviteToken)
}

mutation consoleUpdateAccountMembership($accountName: String!, $memberId: ID!, $role: Kloudlite__io___apps___iam___types__Role!) {
mutation consoleUpdateAccountMembership($accountName: String!, $memberId: ID!, $role: Github__com___kloudlite___api___apps___iam___types__Role!) {
accounts_updateAccountMembership(
accountName: $accountName
memberId: $memberId
Expand Down Expand Up @@ -1763,21 +1761,10 @@ query consoleGetManagedService($project: ProjectId!, $scope: WorkspaceOrEnvId!,
}
recordVersion
spec {
inputs {
RawMessage
}
msvcKind {
serviceTemplate {
apiVersion
kind
}
nodeSelector
region
tolerations {
effect
key
operator
tolerationSeconds
value
spec
}
}
status {
Expand Down Expand Up @@ -1841,21 +1828,10 @@ query consoleListManagedServices($project: ProjectId!, $scope: WorkspaceOrEnvId!
}
recordVersion
spec {
inputs {
RawMessage
}
msvcKind {
serviceTemplate {
apiVersion
kind
}
nodeSelector
region
tolerations {
effect
key
operator
tolerationSeconds
value
spec
}
}
status {
Expand Down Expand Up @@ -1931,16 +1907,15 @@ query consoleGetManagedResource($project: ProjectId!, $scope: WorkspaceOrEnvId!,
}
recordVersion
spec {
inputs {
RawMessage
}
mresKind {
kind
}
msvcRef {
resourceTemplate {
apiVersion
kind
name
msvcRef {
name
kind
apiVersion
}
spec
}
}
status {
Expand Down Expand Up @@ -2703,6 +2678,61 @@ query consoleGetBuildRun($repoName: String!, $buildRunName: String!) {
}
}

query authCli_getKubeConfig($name: String!) {
infra_getCluster(name: $name) {
adminKubeconfig {
encoding
value
}
}
}

query authCli_listClusters($pagination: CursorPaginationIn) {
infra_listClusters(pagination: $pagination) {
edges {
node {
displayName
metadata {
name
}
}
}
}
}

query authCli_listAccounts {
accounts_listAccounts {
id
metadata {
name
}
displayName
}
}

query authCli_getCurrentUser {
auth_me {
id
email
name
}
}

mutation authCli_createRemoteLogin($secret: String) {
auth_createRemoteLogin(secret: $secret)
}

query authCli_getRemoteLogin($loginId: String!, $secret: String!) {
auth_getRemoteLogin(loginId: $loginId, secret: $secret) {
authHeader
status
}
}

mutation authSetRemoteAuthHeader($loginId: String!, $authHeader: String) {
auth_setRemoteAuthHeader(loginId: $loginId, authHeader: $authHeader)
}

query authCheckOauthEnabled {
auth_listOAuthProviders {
enabled
Expand Down
102 changes: 0 additions & 102 deletions lib/client/helpers/socket-context.jsx

This file was deleted.

Loading
Loading