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
kind: Service | |
apiVersion: v1 | |
metadata: | |
name: opa-service | |
spec: | |
type: LoadBalancer | |
selector: | |
app: opa-app | |
ports: | |
- protocol: TCP |
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
apiVersion: constraints.gatekeeper.sh/v1beta1 | |
kind: LBTypeSvcNotAllowed | |
metadata: | |
name: deny-lb-type-svc-dev-ns | |
spec: | |
match: | |
kinds: | |
- apiGroups: [""] | |
kinds: ["Service"] | |
namespaces: |
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
apiVersion: templates.gatekeeper.sh/v1beta1 | |
kind: ConstraintTemplate | |
metadata: | |
name: lbtypesvcnotallowed | |
spec: | |
crd: | |
spec: | |
names: | |
kind: LBTypeSvcNotAllowed | |
listKind: LBTypeSvcNotAllowedList |
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
apiVersion: v1 | |
kind: ConfigMap | |
metadata: | |
name: message-configmap | |
labels: | |
app: message-app | |
data: | |
MESSAGE: "This too shall pass" #Put the message you want to display here. |
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
kubectl create namespace argocd | |
kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/install.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
apiVersion: argoproj.io/v1alpha1 | |
kind: Application | |
metadata: | |
name: message-app-staging | |
namespace: argocd | |
environment: staging | |
finalizers: | |
- resources-finalizer.argocd.argoproj.io | |
spec: | |
project: default |
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
apiVersion: v1 | |
clusters: | |
- cluster: | |
server: https://DBFE36D09896EECAB426959C35FFCC47.sk1.us-east-1.eks.amazonaws.com | |
certificate-authority-data: ”....................” | |
name: kubernetes | |
contexts: | |
- context: | |
cluster: kubernetes | |
user: aws |
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
{ | |
"cluster": { | |
"status": "CREATING", | |
"name": "eks-blog-cluster", | |
"certificateAuthority": {}, | |
"roleArn": "arn:aws:iam::XXXXXXXXXXXX:role/eks-service-role", | |
"resourcesVpcConfig": { | |
"subnetIds": [ | |
"subnet-0b8da2094908e1b23", | |
"subnet-01a46af43b2c5e16c" |
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
apiVersion: v1 | |
kind: ConfigMap | |
metadata: | |
name: aws-auth | |
namespace: kube-system | |
data: | |
mapRoles: | | |
- rolearn: <ARN of instance role (not instance profile)> | |
username: system:node:{{EC2PrivateDNSName}} | |
groups: |
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
Conditions: | |
Type Status LastProbeTime LastTransitionTime Reason Message | |
---- ------ ----------------- ------------------ ------ ------- | |
FileSystemResizePending True Mon, 01 Jan 0001 00:00:00 +0000 Mon, 30 Sep 2019 15:07:01 +0530 Waiting for user to (re-)start a pod to finish file system resize of volume on node. |
NewerOlder