I accessed the node which the appregistry running.
[core@ip-10-0-140-215 ~]$ ./grpcurl -plaintext 10.128.2.11:50051 list api.Registry
api.Registry.GetBundle
api.Registry.GetBundleForChannel
api.Registry.GetBundleThatReplaces
api.Registry.GetChannelEntriesThatProvide
api.Registry.GetChannelEntriesThatReplace
api.Registry.GetDefaultBundleThatProvides
api.Registry.GetLatestChannelEntriesThatProvide
api.Registry.GetPackage
api.Registry.ListPackages
But, how to check the details of api.Registry.ListPackages and grpc.health.v1.Health.Check? @ecordell @njhale
[core@ip-10-0-140-215 ~]$ ./grpcurl -plaintext 10.128.2.11:50051 list api.Registry.ListPackages
Failed to list methods for service "api.Registry.ListPackages": Service not found: api.Registry.ListPackages
[core@ip-10-0-140-215 ~]$ ./grpcurl -plaintext 10.128.2.11:50051 list api.Registry/ListPackages
Failed to list methods for service "api.Registry/ListPackages": Symbol not found: api.Registry/ListPackages
[core@ip-10-0-140-215 ~]$ ./grpcurl -plaintext 10.128.2.11:50051 list api.Registry/ListPackages
Failed to list methods for service "api.Registry/ListPackages": Symbol not found: api.Registry/ListPackages
[core@ip-10-0-140-215 ~]$ ./grpcurl -plaintext 10.128.2.11:50051 list api.Registry/api.Registry.ListPackages
Failed to list methods for service "api.Registry/api.Registry.ListPackages": Symbol not found: api.Registry/api.Registry.ListPackages
[core@ip-10-0-140-215 ~]$ ./grpcurl -plaintext 10.128.2.11:50051 list --help
Failed to list methods for service "--help": Symbol not found: --help
[core@ip-10-0-140-215 ~]$ ./grpcurl -plaintext 10.128.2.11:50051 list
api.Registry
grpc.health.v1.Health
grpc.reflection.v1alpha.ServerReflection
[core@ip-10-0-140-215 ~]$ ./grpcurl -plaintext 10.128.2.11:50051 list grpc.health.v1.Health
grpc.health.v1.Health.Check
I accessed the node which the
appregistryrunning.But, how to check the details of
api.Registry.ListPackagesandgrpc.health.v1.Health.Check? @ecordell @njhale