You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
want to move to a mode of not prefixing cross-cutting resource names (e.g. creating an address.lattice.mlab.com for service 123e4567-e89b-12d3-a456-426655440000 should just have the name 123e4567-e89b-12d3-a456-426655440000 rather than lattice-service-123e4567-e89b-12d3-a456-426655440000)
currently using https://github.com/satori/go.uuid which should not be used (satori/go.uuid#84).
want to move to a mode of not prefixing cross-cutting resource names (e.g. creating an
address.lattice.mlab.com
for service123e4567-e89b-12d3-a456-426655440000
should just have the name123e4567-e89b-12d3-a456-426655440000
rather thanlattice-service-123e4567-e89b-12d3-a456-426655440000
)however to do this we must rely on the UUIDs being truly unique (which is reasonable assuming we're using a correct UUID generator https://stackoverflow.com/questions/2977593/is-it-safe-to-assume-a-guid-will-always-be-unique)
so we should ensure we're using a correct UUID generator. probably want to just replicate this: https://github.com/kubernetes/kubernetes/blob/7f23a743e8c23ac6489340bbb34fa6f1d392db9d/staging/src/k8s.io/apimachinery/pkg/util/uuid/uuid.go
The text was updated successfully, but these errors were encountered: