Skip to content

Commit 2093b25

Browse files
committed
Merge branch 'develop'
2 parents ca464e2 + 41af1a8 commit 2093b25

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+279
-197
lines changed

.gitattributes

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,5 @@
55
*.txt text eol=lf
66
*.yaml text eol=lf
77

8-
/linux/alias/** text eol=lf
9-
108
*.jpg binary
119
*.png binary

cert-manager/README.md

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,6 @@
22

33
The cert-manager is a certificate controller for Kubernetes. It will ensure certificates are valid and up to date, and attempt to renew certificates at a configured time before expiry.
44

5-
## Install
6-
7-
```bash
8-
kubectl apply --f https://github.com/jetstack/cert-manager/releases/latest/download/cert-manager.yaml
9-
10-
# for specific version:
11-
kubectl apply -f https://github.com/cert-manager/cert-manager/releases/download/v1.11.0/cert-manager.yaml
12-
```
13-
145
## References
156

167
- cert-manager Website: <https://cert-manager.io/>

cert-manager/cert-manager-commands.sh

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
######################################################################
22

3+
### install
4+
5+
kubectl apply --f https://github.com/jetstack/cert-manager/releases/latest/download/cert-manager.yaml
6+
7+
# for specific version:
8+
kubectl apply -f https://github.com/cert-manager/cert-manager/releases/download/v1.11.0/cert-manager.yaml
9+
10+
######################################################################
11+
312
### krew
413

514
kubectl cert-manager check api

cert-manager/helm/cert-manager.tf

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,14 @@ provider "helm" {
1111
resource "kubernetes_namespace" "cert_manager" {
1212
metadata {
1313
name = "cert-manager"
14-
labels = {
15-
"istio-injection" = "enabled"
16-
}
1714
}
1815
}
1916

2017
resource "helm_release" "cert_manager" {
2118
name = "cert-manager"
2219
repository = "https://charts.jetstack.io"
2320
chart = "cert-manager"
24-
version = "v1.16.1"
21+
version = "v1.16.2"
2522
set {
2623
name = "crds.enabled"
2724
value = true

cpp/cmake/README.md

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,5 @@
11
# CMake
22

3-
## Install
4-
5-
### Homebrew
6-
7-
```sh
8-
brew install cmake
9-
```
10-
11-
### Chocolatey
12-
13-
```ps1
14-
choco install -y cmake --installargs 'ADD_CMAKE_TO_PATH=System'
15-
```
16-
173
## References
184

195
- GNU Make: [/infrastructure-examples/linux/make](/linux/make/)

cpp/cmake/cmake-commands.sh

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
######################################################################
2+
3+
### install
4+
5+
### homebrew
6+
brew install cmake
7+
8+
### chocolatey
9+
choco install -y cmake --installargs 'ADD_CMAKE_TO_PATH=System'
10+
11+
######################################################################
12+
13+
### toolchain
14+
15+
-DCMAKE_TOOLCHAIN_FILE=${HOME}/tools/vcpkg/scripts/buildsystems/vcpkg.cmake
File renamed without changes.
File renamed without changes.

cpp/rust/README.md

Lines changed: 0 additions & 9 deletions
This file was deleted.

docker/docker-commands.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
######################################################################
22

3+
docker container run --rm -it --name busybox busybox:latest
4+
docker container run --rm -it --name dnstools infoblox/dnstools:latest
5+
6+
######################################################################
7+
38
### process
49
sudo pgrep -xa dockerd | grep dockerd
510
sudo pgrep -xa docker-proxy | grep docker-proxy

0 commit comments

Comments
 (0)