Skip to content

Commit

Permalink
Merge branch 'release-v1.0.5' into depshub/update/postcss/12.1.5
Browse files Browse the repository at this point in the history
Signed-off-by: Karthik Thirumalasetti <[email protected]>
  • Loading branch information
karthik1729 authored Sep 8, 2024
2 parents 534476f + 48dae32 commit 301f23e
Show file tree
Hide file tree
Showing 374 changed files with 36,325 additions and 4,566 deletions.
682 changes: 661 additions & 21 deletions LICENSE

Large diffs are not rendered by default.

213 changes: 97 additions & 116 deletions gql-queries-generator/doc/queries.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -181,117 +181,6 @@ query consoleListAllClusters($search: SearchCluster, $pagination: CursorPaginati
}
totalCount
}
clusters: infra_listClusters(search: $search, pagination: $pagination) {
totalCount
pageInfo {
startCursor
hasPrevPage
hasNextPage
endCursor
}
edges {
cursor
node {
id
displayName
lastOnlineAt
markedForDeletion
metadata {
name
annotations
generation
}
creationTime
lastUpdatedBy {
userId
userName
userEmail
}
createdBy {
userEmail
userId
userName
}
updateTime
status {
checks
checkList {
description
debug
name
title
}
isReady
lastReadyGeneration
lastReconcileTime
message {
RawMessage
}
resources {
apiVersion
kind
name
namespace
}
}
syncStatus {
action
error
lastSyncedAt
recordVersion
state
syncScheduledAt
}
recordVersion
spec {
messageQueueTopicName
kloudliteRelease
clusterTokenRef {
key
name
namespace
}
accountId
accountName
availabilityMode
aws {
k3sMasters {
iamInstanceProfileRole
instanceType
nodes
nvidiaGpuEnabled
rootVolumeSize
rootVolumeType
}
nodePools
region
spotNodePools
}
gcp {
credentialsRef {
name
namespace
}
gcpProjectID
region
}
cloudProvider
backupToS3Enabled
cloudflareEnabled
clusterInternalDnsHost
clusterServiceCIDR
output {
keyK3sAgentJoinToken
keyK3sServerJoinToken
keyKubeconfig
secretName
}
publicDNSHost
taintMasterNodes
}
}
}
}
}

query consoleListClusters($search: SearchCluster, $pagination: CursorPaginationIn) {
Expand Down Expand Up @@ -850,6 +739,7 @@ query consoleGetEnvironment($name: String!) {
privateIngressClass
publicIngressClass
}
suspend
targetNamespace
}
status {
Expand Down Expand Up @@ -925,6 +815,7 @@ query consoleListEnvironments($search: SearchEnvironments, $pq: CursorPagination
privateIngressClass
publicIngressClass
}
suspend
targetNamespace
}
status {
Expand Down Expand Up @@ -4101,6 +3992,51 @@ mutation consoleDeleteImagePullSecrets($name: String!) {
core_deleteImagePullSecret(name: $name)
}

query consoleGetImagePullSecret($name: String!) {
core_getImagePullSecret(name: $name) {
accountName
createdBy {
userEmail
userId
userName
}
creationTime
displayName
dockerConfigJson
environments
format
id
lastUpdatedBy {
userEmail
userId
userName
}
markedForDeletion
metadata {
annotations
creationTimestamp
deletionTimestamp
generation
labels
name
namespace
}
recordVersion
registryPassword
registryURL
registryUsername
syncStatus {
action
error
lastSyncedAt
recordVersion
state
syncScheduledAt
}
updateTime
}
}

query consoleListImagePullSecrets($search: SearchImagePullSecrets, $pq: CursorPaginationIn) {
core_listImagePullSecrets(search: $search, pq: $pq) {
edges {
Expand Down Expand Up @@ -6241,6 +6177,33 @@ query authCli_getEnvironment($name: String!) {
}
}

mutation authCli_cloneEnvironment($clusterName: String!, $sourceEnvName: String!, $destinationEnvName: String!, $displayName: String!, $environmentRoutingMode: Github__com___kloudlite___operator___apis___crds___v1__EnvironmentRoutingMode!) {
core_cloneEnvironment(
clusterName: $clusterName
sourceEnvName: $sourceEnvName
destinationEnvName: $destinationEnvName
displayName: $displayName
environmentRoutingMode: $environmentRoutingMode
) {
id
displayName
clusterName
metadata {
name
namespace
}
status {
isReady
message {
RawMessage
}
}
spec {
targetNamespace
}
}
}

query authCli_getSecret($envName: String!, $name: String!) {
core_getSecret(envName: $envName, name: $name) {
displayName
Expand All @@ -6263,8 +6226,8 @@ query authCli_getConfig($envName: String!, $name: String!) {
}
}

query authCli_listApps($envName: String!) {
apps: core_listExternalApps(envName: $envName) {
query authCli_listApps($pq: CursorPaginationIn, $envName: String!) {
apps: core_listExternalApps(pq: $pq, envName: $envName) {
edges {
node {
spec {
Expand Down Expand Up @@ -6295,7 +6258,7 @@ query authCli_listApps($envName: String!) {
}
}
}
mapps: core_listApps(envName: $envName) {
mapps: core_listApps(pq: $pq, envName: $envName) {
edges {
node {
displayName
Expand Down Expand Up @@ -6332,8 +6295,8 @@ query authCli_listApps($envName: String!) {
}
}

query authCli_listConfigs($envName: String!) {
core_listConfigs(envName: $envName) {
query authCli_listConfigs($pq: CursorPaginationIn, $envName: String!) {
core_listConfigs(pq: $pq, envName: $envName) {
totalCount
edges {
node {
Expand Down Expand Up @@ -6597,6 +6560,24 @@ query authCli_listImportedManagedResources($envName: String!, $search: SearchImp
}
}

query authCli_listByokClusters($search: SearchCluster, $pagination: CursorPaginationIn) {
infra_listBYOKClusters(search: $search, pagination: $pagination) {
edges {
cursor
node {
displayName
id
metadata {
name
namespace
}
updateTime
}
}
totalCount
}
}

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

0 comments on commit 301f23e

Please sign in to comment.