Skip to content

Commit c3741fd

Browse files
authored
Merge branch 'clastix:master' into patch-1
2 parents 28d5b4b + c954722 commit c3741fd

File tree

6 files changed

+470
-3
lines changed

6 files changed

+470
-3
lines changed

.github/workflows/ci.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
with:
1717
go-version-file: go.mod
1818
- name: Run golangci-lint
19-
uses: golangci/[email protected].0
19+
uses: golangci/[email protected].2
2020
with:
2121
version: v1.62.2
2222
only-new-issues: false

deploy/kamaji-aws.env

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# aws parameters
2+
export KAMAJI_REGION=eu-west-3
3+
export KAMAJI_AZ=eu-west-3a
4+
export KAMAJI_CLUSTER_VERSION="1.32"
5+
export KAMAJI_CLUSTER=kamaji-2
6+
export KAMAJI_NODE_NG=${KAMAJI_CLUSTER}-${KAMAJI_REGION}-ng1
7+
export KAMAJI_NODE_TYPE=t3.medium
8+
export KAMAJI_VPC_NAME=eksctl-${KAMAJI_CLUSTER}-cluster/VPC
9+
export KAMAJI_VPC_CIDR=192.168.0.0/16
10+
export KAMAJI_PUBLIC_SUBNET_NAME=eksctl-${KAMAJI_CLUSTER}-cluster/SubnetPublicEUWEST3A
11+
export KAMAJI_PRIVATE_SUBNET_NAME=eksctl-${KAMAJI_CLUSTER}-cluster/SubnetPrivateEUWEST3A
12+
13+
14+
# kamaji parameters
15+
export KAMAJI_NAMESPACE=kamaji-system
16+
17+
# tenant cluster parameters
18+
export TENANT_NAMESPACE=tenant-00
19+
export TENANT_NAME=tenant-00
20+
export TENANT_DOMAIN=internal.kamaji.aws.com
21+
export TENANT_VERSION=v1.30.2
22+
export TENANT_PORT=6443 # port used to expose the tenant api server
23+
export TENANT_PROXY_PORT=8132 # port used to expose the konnectivity server
24+
export TENANT_POD_CIDR=10.36.0.0/16
25+
export TENANT_SVC_CIDR=10.96.0.0/16
26+
export TENANT_DNS_SERVICE=10.96.0.10
27+
28+
export TENANT_VM_SIZE=t3.medium
29+
export TENANT_ASG_MIN_SIZE=1
30+
export TENANT_ASG_MAX_SIZE=1
31+
export TENANT_ASG_DESIRED_SIZE=1
32+
export TENANT_SUBNET_ADDRESS=10.0.4.0/24
33+
export TENANT_ASG_NAME=$TENANT_NAME-workers

docs/content/getting-started/index.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Getting started
2+
3+
This section contains the information on how to get started with Kamaji
4+
5+
- [Getting started with Kamaji](getting-started.md): install the required components and Kamaji on any Kubernetes cluster
6+
- [Kamaji: Getting started on Kind](kind.md): useful for development environments, create a Kamaji environment on `kind`

0 commit comments

Comments
 (0)