-
-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
34 changed files
with
452 additions
and
50 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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
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 @@ | ||
--- | ||
title: "End-to-end (e2e)" | ||
description: "The term *end-to-end* encompasses an entire workflow from start to finish." | ||
terms: | ||
- e2e | ||
- end to end | ||
- end-to-end | ||
--- |
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,13 @@ | ||
--- | ||
title: "Helm Chart" | ||
description: "A *Helm Chart* is a package that defines all the kubernetes resources necessary for deploying an application to kubernetes." | ||
terms: | ||
- helm chart | ||
- helm charts | ||
- chart | ||
- charts | ||
tags: | ||
- helm | ||
- Helmfile | ||
- k8s | ||
--- |
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 @@ | ||
--- | ||
title: "Helm" | ||
description: "Helm is one of the predominant package managers for kubernetes which is used for installing applications on the cluster." | ||
terms: | ||
- helm | ||
tags: | ||
- k8s | ||
- helm charts | ||
- helmfile | ||
--- |
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,11 @@ | ||
--- | ||
title: "Identity Access Management (IAM)" | ||
description: "Amazon's IAM is a service that helps you securely control access to AWS resources." | ||
terms: | ||
- IAM | ||
- Identity Access Management | ||
tags: | ||
- AWS | ||
- ACL | ||
- security | ||
--- |
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
36 changes: 36 additions & 0 deletions
36
content/kubernetes-backing-services/iam/examples/kube2iam-helmfile.yaml
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,36 @@ | ||
repositories: | ||
- name: "stable" | ||
url: "https://kubernetes-charts.storage.googleapis.com" | ||
|
||
releases: | ||
- name: "iam" | ||
namespace: "kube-system" | ||
labels: | ||
chart: "kube2iam" | ||
component: "iam" | ||
namespace: "kube-system" | ||
vendor: "jtblin" | ||
default: "true" | ||
chart: "stable/kube2iam" | ||
version: "0.8.5" | ||
set: | ||
- name: "tolerations[0].key" | ||
value: "node-role.kubernetes.io/master" | ||
- name: "tolerations[0].effect" | ||
value: "NoSchedule" | ||
- name: "aws.region" | ||
value: 'us-west-2' | ||
- name: "extraArgs.auto-discover-base-arn" | ||
value: "true" | ||
- name: "host.iptables" | ||
value: "true" | ||
- name: "host.interface" | ||
value: "cali+" | ||
- name: "resources.limits.cpu" | ||
value: "200m" | ||
- name: "resources.limits.memory" | ||
value: "256Mi" | ||
- name: "resources.requests.cpu" | ||
value: "50m" | ||
- name: "resources.requests.memory" | ||
value: "128Mi" |
18 changes: 18 additions & 0 deletions
18
content/kubernetes-backing-services/iam/examples/kube2iam-usage-deployment.yaml
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,18 @@ | ||
apiVersion: extensions/v1beta1 | ||
kind: Deployment | ||
metadata: | ||
name: chartmuseum-deployment | ||
spec: | ||
replicas: 3 | ||
template: | ||
metadata: | ||
annotations: | ||
iam.amazonaws.com/role: s3-access-role | ||
labels: | ||
app: chartmuseum | ||
spec: | ||
containers: | ||
- name: chartmuseum | ||
image: chartmuseum/chartmuseum:v0.5.2 | ||
ports: | ||
- containerPort: 80 |
Oops, something went wrong.