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: eksctl.io/v1alpha5 | |
kind: ClusterConfig | |
metadata: | |
name: bottlerocket | |
region: ap-northeast-1 | |
version: "1.21" | |
availabilityZones: ["ap-northeast-1a", "ap-northeast-1d"] |
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
#!/usr/bin/env bash | |
# | |
# Copyright (C) 2021 The Falco Authors. | |
# | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 |
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
FROM rust:1.54-slim-buster as builder | |
RUN adduser --home /home/blogger blogger && chown -R blogger /home/blogger | |
USER blogger | |
WORKDIR /home/blogger | |
COPY . . | |
RUN cargo run |
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
diff --git a/content/en/docs/search.md b/content/en/docs/search.md | |
deleted file mode 100644 | |
index d741e3218..000000000 | |
--- a/content/en/docs/search.md | |
+++ /dev/null | |
@@ -1,5 +0,0 @@ | |
---- | |
-layout: search | |
-title: Search Results | |
---- |
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
diff --git a/content/en/docs/reference/tools.md b/content/en/docs/reference/tools.md | |
index ef210f2b0..ceeadbb27 100644 | |
--- a/content/en/docs/reference/tools.md | |
+++ b/content/en/docs/reference/tools.md | |
@@ -20,7 +20,7 @@ Kubernetes contains several built-in tools to help you work with the Kubernetes | |
## Minikube | |
-[`minikube`](/docs/tasks/tools/install-minikube/) is a tool that makes it | |
+[`minikube`](https://minikube.sigs.k8s.io/docs/) is a tool that makes it |
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
diff --git a/content/en/docs/reference/setup-tools/kubeadm/_index.md b/content/en/docs/reference/setup-tools/kubeadm/_index.md | |
index 32c5c6f0a..d747c0512 100755 | |
--- a/content/en/docs/reference/setup-tools/kubeadm/_index.md | |
+++ b/content/en/docs/reference/setup-tools/kubeadm/_index.md | |
@@ -8,7 +8,7 @@ card: | |
weight: 40 | |
--- | |
-<img src="https://raw.githubusercontent.com/kubernetes/kubeadm/master/logos/stacked/color/kubeadm-stacked-color.png" align="right" width="150px">Kubeadm is a tool built to provide `kubeadm init` and `kubeadm join` as best-practice “fast paths” for creating Kubernetes clusters. | |
+<img src="https://raw.githubusercontent.com/kubernetes/kubeadm/master/logos/stacked/color/kubeadm-stacked-color.png" align="right" width="150px">Kubeadm is a tool built to provide `kubeadm init` and `kubeadm join` as best-practice "fast paths" for creating Kubernetes clusters. |
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
diff --git a/content/en/docs/reference/kubectl/overview.md b/content/en/docs/reference/kubectl/overview.md | |
index a9177da9f..a9f155065 100644 | |
--- a/content/en/docs/reference/kubectl/overview.md | |
+++ b/content/en/docs/reference/kubectl/overview.md | |
@@ -61,7 +61,7 @@ for example `create`, `get`, `describe`, `delete`. | |
* To specify resources with one or more files: `-f file1 -f file2 -f file<#>` | |
* [Use YAML rather than JSON](/docs/concepts/configuration/overview/#general-configuration-tips) since YAML tends to be more user-friendly, especially for configuration files.<br/> | |
- Example: `kubectl get pod -f ./pod.yaml` | |
+ Example: `kubectl get -f ./pod.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
diff --git a/content/en/docs/reference/kubectl/jsonpath.md b/content/en/docs/reference/kubectl/jsonpath.md | |
index 50c051c9f..d26c110ce 100644 | |
--- a/content/en/docs/reference/kubectl/jsonpath.md | |
+++ b/content/en/docs/reference/kubectl/jsonpath.md | |
@@ -98,4 +98,16 @@ kubectl get pods -o=jsonpath="{range .items[*]}{.metadata.name}{\"\t\"}{.status. | |
``` | |
{{< /note >}} | |
+{{< note >}} | |
+ |
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
diff --git a/content/en/docs/reference/kubectl/cheatsheet.md b/content/en/docs/reference/kubectl/cheatsheet.md | |
index e20826ca4..ab4fde546 100644 | |
--- a/content/en/docs/reference/kubectl/cheatsheet.md | |
+++ b/content/en/docs/reference/kubectl/cheatsheet.md | |
@@ -90,6 +90,13 @@ kubectl apply -f ./my1.yaml -f ./my2.yaml # create from multiple files | |
kubectl apply -f ./dir # create resource(s) in all manifest files in dir | |
kubectl apply -f https://git.io/vPieo # create resource(s) from url | |
kubectl create deployment nginx --image=nginx # start a single instance of nginx | |
+ | |
+# create a Job which prints "Hello World" |
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
diff --git a/content/en/docs/reference/glossary/platform-developer.md b/content/en/docs/reference/glossary/platform-developer.md | |
index ed961c27f..8489aea94 100755 | |
--- a/content/en/docs/reference/glossary/platform-developer.md | |
+++ b/content/en/docs/reference/glossary/platform-developer.md | |
@@ -14,8 +14,8 @@ tags: | |
<!--more--> | |
-A platform developer may, for example, use [Custom Resources](/docs/concepts/extend-Kubernetes/api-extension/custom-resources/) or | |
-[Extend the Kubernetes API with the aggregation layer](/docs/concepts/extend-Kubernetes/api-extension/apiserver-aggregation/) |