-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- remove invite code screen from console
- update devdoc documentation
- Loading branch information
1 parent
4ac600b
commit ce70028
Showing
19 changed files
with
74 additions
and
147 deletions.
There are no files selected for viewing
This file contains 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 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 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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 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 |
---|---|---|
@@ -1,11 +1,5 @@ | ||
import { redirect } from '@remix-run/node'; | ||
import { GQLServerHandler } from '~/root/lib/server/gql/saved-queries'; | ||
import { IRemixCtx } from '~/root/lib/types/common'; | ||
|
||
export const loader = async (ctx: IRemixCtx) => { | ||
const { data } = await GQLServerHandler(ctx.request).whoAmI(); | ||
if (data && !data.approved) { | ||
return redirect(`/invite-code`); | ||
} | ||
export const loader = async () => { | ||
return redirect('/teams'); | ||
}; |
This file was deleted.
Oops, something went wrong.
This file contains 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 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 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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# Architecture | ||
|
||
<img src="/arch.png" alt="dev-hell" className="wb-p-3xl wb-mt-3xl wb-bg-white" /> | ||
<img src="/arch1.png" alt="dev-hell" className="wb-p-3xl wb-mt-3xl wb-bg-white" /> |
This file contains 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 |
---|---|---|
@@ -1,10 +1,10 @@ | ||
import Steps from "~/app/components/steps"; | ||
|
||
## 4 Steps to Get Started | ||
## 5 Steps to Get Started | ||
|
||
<Steps> | ||
### Attach Your Cluster | ||
Attach your cluster to Kloudlite using a Helm chart. First, create a cluster reference in Kloudlite, then follow the steps to attach the cluster. | ||
First, create a cluster reference in Kloudlite, then follow the steps to attach the cluster. | ||
<img src="/attach-cluster-1.png" alt="" className="wb-p-3xl wb-mt-3xl wb-bg-white" /> | ||
|
||
<img src="/attach-cluster-2.png" alt="" className="wb-p-3xl wb-mt-3xl wb-bg-white" /> | ||
|
@@ -22,12 +22,40 @@ and import resources into the environment. | |
Once environment is created you can add configs, secrets, apps to it. You can also import | ||
managed resources of managed services. | ||
|
||
### Setup Kloudlite CLI | ||
Kloudlite CLI is a command line tool that allows you to interact with Kloudlite. It provides a set of commands to manage clusters, environments, and other resources. | ||
|
||
Setup kloudlite cli. Follow the below instructions or click [here](https://github.com/kloudlite/kl). | ||
```bash | ||
# Prerequisites: | ||
docker run | ||
|
||
# Install latest with curl | ||
curl 'https://kl.kloudlite.io/kloudlite/kl!?select=kl' | bash | ||
|
||
# Install latest with wget | ||
wget -qO- 'https://kl.kloudlite.io/kloudlite/kl!?select=kl' | bash | ||
|
||
# Install specific version | ||
curl 'https://kl.kloudlite.io/kloudlite/[email protected]!?select=kl' | bash | ||
``` | ||
|
||
Authentication: | ||
```bash | ||
# Login to Kloudlite | ||
kl auth login | ||
|
||
# Logout from Kloudlite | ||
kl auth logout | ||
|
||
# Status of Kloudlite authentication | ||
kl auth status | ||
``` | ||
|
||
### Set Up Your Local Machine | ||
Once enviroment is created you can set up your local machine to connect to the environment | ||
using the Kloudlite CLI. | ||
|
||
Setup kloudlite cli. Follow the instructions [here](https://github.com/kloudlite/kl). | ||
|
||
Choose your workspace directory and create a `kl.yaml` file with the following command: | ||
```bash | ||
kl init | ||
|
This file contains 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,8 @@ | ||
{ | ||
"supported-services":{ | ||
"title": "Supported Services" | ||
}, | ||
"kompose":{ | ||
"title": "Kompose" | ||
} | ||
} |
This file contains 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,2 @@ | ||
# Kompose | ||
coming soon... |
10 changes: 10 additions & 0 deletions
10
src/apps/devdoc/pages/docs/integrated-services/supported-services.mdx
This file contains 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,10 @@ | ||
# Supported Services | ||
Currently these are the list of services that are supported by kloudlite. | ||
|
||
- PostgreSQL | ||
- MySQL | ||
- MongoDB | ||
- Redis | ||
|
||
You can create these services and respective resources seamlessly from kloudlite dashboard. | ||
You will be able to import resources of the services inside your environment. |
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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 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