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

Update K8s Releaser to use resource manager #1938

Merged
merged 4 commits into from
Jul 28, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .changelog/1938.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:improvement
plugin/k8s: Update K8s Releaser to use SDK Resource Manager
```
109 changes: 92 additions & 17 deletions builtin/k8s/plugin.pb.go

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

4 changes: 4 additions & 0 deletions builtin/k8s/plugin.proto
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,15 @@ message Release {
// service_name is the name of the service in Kubernetes
string service_name = 2;
string Url = 1;
google.protobuf.Any resource_state = 3;
}

// Resource contains the internal resource states.
message Resource {
message Deployment {
string name = 1;
}
message Service {
string name = 1;
}
}
Loading