laconicd-deprecated/x/registry/keeper
Thomas E Lackey 47d086111d Add DnsRecord and ApplicationDeploymentRequest (#124)
> Note: This has a breaking protobuf change, but that is known and OK, as the previous release has not been deployed externally.

```
message DnsRecord {
  string type           = 1 [(gogoproto.moretags) = "json:\"type\" yaml:\"type\""];
  string name           = 2 [(gogoproto.moretags) = "json:\"name\" yaml:\"name\""];
  string version        = 3 [(gogoproto.moretags) = "json:\"version\" yaml:\"version\""];
  string resource_type  = 4 [(gogoproto.moretags) = "json:\"resourceType\" yaml:\"resourceType\""];
  string value          = 5 [(gogoproto.moretags) = "json:\"value\" yaml:\"value\""];
  string meta           = 20 [(gogoproto.moretags) = "json:\"meta\" yaml:\"meta\""];
  repeated string tags  = 21 [(gogoproto.moretags) = "json:\"tags\" yaml:\"tags\""];
}

message ApplicationDeploymentRequest {
  string type           = 1 [(gogoproto.moretags) = "json:\"type\" yaml:\"type\""];
  string name           = 2 [(gogoproto.moretags) = "json:\"name\" yaml:\"name\""];
  string version        = 3 [(gogoproto.moretags) = "json:\"version\" yaml:\"version\""];
  string application    = 4 [(gogoproto.moretags) = "json:\"application\" yaml:\"application\""];
  string dns            = 5 [(gogoproto.moretags) = "json:\"dns\" yaml:\"dns\""];
  string config         = 6 [(gogoproto.moretags) = "json:\"config\" yaml:\"config\""];
  repeated string crn   = 7 [(gogoproto.moretags) = "json:\"crn\" yaml:\"crn\""];
  string meta           = 20 [(gogoproto.moretags) = "json:\"meta\" yaml:\"meta\""];
  repeated string tags  = 21 [(gogoproto.moretags) = "json:\"tags\" yaml:\"tags\""];
}
```

Also rename WebAppDeploymentRecord to ApplicationDeploymentRecord.

Reviewed-on: cerc-io/laconicd#124
Co-authored-by: Thomas E Lackey <telackey@bozemanpass.com>
Co-committed-by: Thomas E Lackey <telackey@bozemanpass.com>
2023-12-07 22:19:10 +00:00
..
grpc_query_test.go 122: Fix attribute index key collision (#123) 2023-11-29 00:05:56 +00:00
grpc_query.go fix lint (#101) 2023-03-15 11:22:35 -04:00
invariants.go rename nameservie to registry (#54) 2022-12-09 09:47:14 +05:30
keeper_test.go rename nameservie to registry (#54) 2022-12-09 09:47:14 +05:30
keeper.go Add DnsRecord and ApplicationDeploymentRequest (#124) 2023-12-07 22:19:10 +00:00
msg_server.go rename nameservie to registry (#54) 2022-12-09 09:47:14 +05:30
naming_keeper.go fix lint (#101) 2023-03-15 11:22:35 -04:00
params.go rename nameservie to registry (#54) 2022-12-09 09:47:14 +05:30
record_keeper.go fix lint (#101) 2023-03-15 11:22:35 -04:00
sync.go rename nameservie to registry (#54) 2022-12-09 09:47:14 +05:30