CDK construct library to deploy KubeSphere on AWS
Project description
cdk-kubesphere
cdk-kubesphere is a CDK construct library that allows you to create KubeSphere on AWS with CDK in TypeScript, JavaScript or Python.
Sample
import { KubeSphere } from 'cdk-kubesphere';
const app = new cdk.App();
const stack = new cdk.Stack(app, 'cdk-kubesphere-demo');
// deploy a default KubeSphere service on a new Amazon EKS cluster
new KubeSphere(stack, 'KubeSphere');
Behind the scene, the KubeSphere construct creates a default Amazon EKS cluster and KubeSphere serivce with helm chart(ks-installer) on it.
View helm command
AWS CDK will helm install the `ks-installer` on the cluster:helm install ks-installer \
--repo https://charts.kubesphere.io/test \
--namespace=kubesphere-system \
--generate-name \
--create-namespace
KubeSphere App Store
Use appStore to enable the KubeSphere App Store support.
new KubeSphere(stack, 'KubeSphere', {
appStore: true,
});
View helm command
AWS CDK will helm install the `ks-installer` on the cluster:helm install ks-installer \
--set openpitrix.enabled=true \
--repo https://charts.kubesphere.io/test \
--namespace=kubesphere-system \
--generate-name \
--create-namespace
Using existing Amazon EKS clusters
You are allowed to deploy KubeSphere in any existing Amazon EKS cluster.
const cluster = eks.Cluster.fromClusterAttributes(this, 'MyCluster', {
clusterName: 'my-cluster-name',
kubectlRoleArn: 'arn:aws:iam::1111111:role/iam-role-that-has-masters-access',
});
// deploy a default KubeSphere service on the existing Amazon EKS cluster
new KubeSphere(stack, 'KubeSphere', { cluster });
See Using existing clusters to learn how to import existing cluster in AWS CDK.
Console
Run the following command to create a port-forward from localhost:8888 to ks-console:80
kubectl -n kubesphere-system port-forward service/ks-console 8888:80
Open http://localhost:8888 and enter the default username/password(admin/P@88w0rd) to enter the admin console.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file cdk-kubesphere-2.0.315.tar.gz.
File metadata
- Download URL: cdk-kubesphere-2.0.315.tar.gz
- Upload date:
- Size: 31.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0244f5f69e051683fa6133b90dd6ddc24aaedd29231ef83ff6fa9676d1ba175d
|
|
| MD5 |
c8806206640fac3bb0741c86a85c280f
|
|
| BLAKE2b-256 |
bc32a1b360f73bb2d8562dc6f1ad1421807a9a2fb42904dd61664ec389da2848
|
File details
Details for the file cdk_kubesphere-2.0.315-py3-none-any.whl.
File metadata
- Download URL: cdk_kubesphere-2.0.315-py3-none-any.whl
- Upload date:
- Size: 30.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c4d979558fb0818d8ca24199d2ea5912b4b218e34682ce42d9c207eb11de5ce6
|
|
| MD5 |
b2d27d8d2dc9085fba466119921228db
|
|
| BLAKE2b-256 |
df22132f513bebbb6e52b9631687f7cef4d47e2f2f66e5ed54538c294ef85292
|