T-shirt size | Approx. time to complete |
---|---|
Small | Days |
Medium | Weeks |
Large | Months |
X-Large | Quarters |
I hereby claim:
- I am arjunrao87 on github.
- I am arjunrao87 (https://keybase.io/arjunrao87) on keybase.
- I have a public key ASCb2C4ez2Mg3EiKYdJzyaGIWKFsZt4QxoUNexlXw2-IEwo
To claim this, I am signing this object:
- Retrospective
- Provide summary metrics for sprint
- Velocity ( Story Points )
- Merge Requests completed
- Burnup/burndown
- Control Chart
- Highlight 1-3 big items that happened in the sprint
- Write a blog post on 1-2 items that got done in the sprint
- Write up the release notes for the sprint
minikube addons enable ingress
kubectl create ns <ns-name>
export TILLER_NAMESPACE=<ns-name>
helm init --tiller-namespace default
helm repo update
helm install stable/nginx-ingress --namespace kube-system
helm install stable/minio
helm install --name "timescaledb" -f values.yaml stable/postgresql
kubectl apply -f ingress.yaml
This file contains hidden or 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
SNIPPET 1 | |
// Before Java 7 | |
List<Integer> myList = new ArrayList<Integer>(); | |
// After Java 7 | |
List<Integer> myList = new ArrayList<>(); | |
// Before Java 9 | |
return new Callable<String>() { | |
@Override | |
public String call() throws Exception { | |
return null; |
- kvm
- kubernetes API
NewerOlder