Anuj Bansal c5249503a3 Change graphql caddy endpoint, update README | 3 лет назад | |
---|---|---|
.. | ||
.gitignore | 3 лет назад | |
Pulumi.yaml | 3 лет назад | |
README.md | 3 лет назад | |
caddy.ts | 3 лет назад | |
configMap.ts | 3 лет назад | |
index.ts | 3 лет назад | |
package.json | 3 лет назад | |
s3Helpers.ts | 3 лет назад | |
tsconfig.json | 3 лет назад |
Deploys an EKS Kubernetes cluster with query node
To deploy your infrastructure, follow the below steps.
After cloning this repo, from this working directory, run these commands:
This installs the dependent packages needed for our Pulumi program.
$ npm install
This will initialize the Pulumi program in TypeScript.
$ pulumi stack init
Set the required configuration variables in Pulumi.<stack>.yaml
$ pulumi config set-all --plaintext aws:region=us-east-1 --plaintext aws:profile=joystream-user \
--plaintext workersFilePath=<PATH> --plaintext membersFilePath=<PATH> --plaintext isMinikube=true
If you want to build the stack on AWS set the isMinikube
config to false
$ puluim config set isMinikube false
.env
file in this directory (cp ../../../.env ./.env
) and set the database and other variables in itMake sure to set GRAPHQL_SERVER_PORT=4001
Running pulumi up -y
will deploy the EKS cluster. Note, provisioning a
new EKS cluster takes between 10-15 minutes.
Modify the config variable isLoadBalancerReady
$ pulumi config set isLoadBalancerReady true
Run pulumi up -y
to update the Caddy config
pulumi stack output endpoint1
or pulumi stack output endpoint2
The GraphQl server is accessible at https://<ENDPOINT>/server/graphql
and indexer at https://<ENDPOINT>/indexer/graphql
kubectl
To access your new Kubernetes cluster using kubectl
, we need to set up the
kubeconfig
file and download kubectl
. We can leverage the Pulumi
stack output in the CLI, as Pulumi facilitates exporting these objects for us.
$ pulumi stack output kubeconfig --show-secrets > kubeconfig
$ export KUBECONFIG=$PWD/kubeconfig
$ kubectl get nodes
We can also use the stack output to query the cluster for our newly created Deployment:
$ kubectl get deployment $(pulumi stack output deploymentName) --namespace=$(pulumi stack output namespaceName)
$ kubectl get service $(pulumi stack output serviceName) --namespace=$(pulumi stack output namespaceName)
To get logs
$ kubectl config set-context --current --namespace=$(pulumi stack output namespaceName)
$ kubectl get pods
$ kubectl logs <PODNAME> --all-containers
To see complete pulumi stack output
$ pulumi stack output
To execute a command
$ kubectl exec --stdin --tty <PODNAME> -c colossus -- /bin/bash
Once you've finished experimenting, tear down your stack's resources by destroying and removing it:
$ pulumi destroy --yes
$ pulumi stack rm --yes