Skip to content

Commit 41af1a8

Browse files
committed
Merge branch 'feature/structure' into develop
2 parents 5636560 + 29dd0df commit 41af1a8

File tree

24 files changed

+224
-128
lines changed

24 files changed

+224
-128
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

cpp/rust/README.md

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

go/README.md

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

go/go-commands.sh

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
######################################################################
22

3-
go run main.go
3+
### install
4+
5+
### homebrew
6+
brew install go
7+
8+
### chocolatey
9+
choco install -y golang
410

511
######################################################################
612

@@ -13,3 +19,15 @@ go test ./... -v -coverprofile=cover.out
1319

1420
go test ./tests/...
1521
go test ./tests/... -v -coverprofile=cover.out
22+
23+
######################################################################
24+
25+
go run main.go
26+
27+
######################################################################
28+
29+
### golang-migrate
30+
31+
brew install golang-migrate
32+
33+
migrate create -ext sql -dir db/migrations -seq init_tables

istio/README.md

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -4,30 +4,6 @@ Istio is an open-source service mesh platform that provides a uniform way to con
44
Traffic routing rules let you easily control the flow of traffic and API calls between services.
55
It provides a number of key capabilities uniformly across a network of services: traffic management, service identity and security, and observability and telemetry
66

7-
## Install istioctl
8-
9-
### Binary/Archive
10-
11-
```bash
12-
curl -L https://istio.io/downloadIstio | sh -
13-
cd istio-*/
14-
cd bin
15-
chmod +x istioctl
16-
sudo /bin/cp -pf istioctl /usr/local/bin
17-
```
18-
19-
### Homebrew
20-
21-
```sh
22-
brew install istioctl
23-
```
24-
25-
### Chocolatey
26-
27-
```ps1
28-
choco install -y istioctl
29-
```
30-
317
## References
328

339
- Istio Documentation: <https://istio.io/latest/docs/>

0 commit comments

Comments
 (0)