Skip to content
This repository has been archived by the owner on Jan 8, 2024. It is now read-only.

builtin/k8s: Introduce Ingress resource support for Kubernetes Releaser #2261

Merged
merged 10 commits into from
Sep 15, 2021
4 changes: 4 additions & 0 deletions .changelog/2261.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
```release-note:improvement
plugin/k8s: Add new ability to release by creating an ingress resource to route
traffic to a service backend from an ingress controller.
```
84 changes: 73 additions & 11 deletions builtin/k8s/plugin.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions builtin/k8s/plugin.proto
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ message Resource {
message Service {
string name = 1;
}
message Ingress {
string name = 1;
}
}

// This represents the state of the TaskLaunch implementation.
Expand Down
Loading