Skip to content

Commit 05f8cbf

Browse files
committed
Merge branch 'docs-and'
2 parents de9f917 + 7e92c80 commit 05f8cbf

File tree

5 files changed

+38
-3
lines changed

5 files changed

+38
-3
lines changed

CHANGELOG.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
## kubent Release Notes
2+
3+
### 0.3.0 (2020-08-11)
4+
5+
**Features**:
6+
- Added stdin support (#19)
7+
- Added support for reading manifests from files (#15)
8+
- Improved Error reporting (#20)
9+
10+
**Fixes**:
11+
- Support resources without namespace (#14)
12+
13+
**Internal/misc**:
14+
- Added first and many other tests (#9, #19), thanks @david-doit-intl 🚀
15+
- Cleaned up logic in main (#16)
16+
- Added release notes and minor deprecated message improvement (#22)
17+
18+
### 0.2.1 (2020-05-24)
19+
20+
**Features**:
21+
- Added install script (#3, #4)
22+
23+
**Internal/misc**:
24+
- Moved logic to unpack last-applied config to collector (7)
25+
26+
### 0.2.0 (2020-04-15)
27+
28+
**Fixes**:
29+
- Produce static binaries (#2)
30+
31+
### 0.1.0 - Initial Release (2020-04-09)

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@ particular following tools are supported:
1919

2020
[1]: https://kubernetes.io/blog/2019/07/18/api-deprecations-in-1-16/
2121

22+
**Additional resources:**
23+
- Blog post on K8s deprecated APIs and introduction of kubent: [Kubernetes: How to automatically detect and deal with deprecated APIs][2]
24+
25+
[2]: https://blog.doit-intl.com/kubernetes-how-to-automatically-detect-and-deal-with-deprecated-apis-f9a8fc23444c
2226

2327
## Install
2428

fixtures/deployment-v1beta1-and-ingress-v1beta1.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ spec:
1919
image: nginx:1.14.2
2020
ports:
2121
- containerPort: 80
22-
apiVersion: extensions/v1beta1
2322
---
23+
apiVersion: extensions/v1beta1
2424
kind: Ingress
2525
metadata:
2626
name: test-ingress

rules/deprecated-1-16.rego

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ main[return] {
99
"Namespace": get_default(resource.metadata, "namespace", "<undefined>"),
1010
"Kind": resource.kind,
1111
"ApiVersion": old_api,
12-
"RuleSet": "1.16 Deprecated APIs",
12+
"RuleSet": "Deprecated APIs removed in 1.16 ",
1313
}
1414
}
1515

rules/deprecated-1-20.rego renamed to rules/deprecated-1-22.rego

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ main[return] {
99
"Namespace": get_default(resource.metadata, "namespace", "<undefined>"),
1010
"Kind": resource.kind,
1111
"ApiVersion": old_api,
12-
"RuleSet": "1.20 Deprecated APIs",
12+
"RuleSet": "Deprecated APIs removed in 1.22",
1313
}
1414
}
1515

0 commit comments

Comments
 (0)