We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
As mentioned here:
GenerateFixedName should be deprecated and kmeta.ChildName used instead.
GenerateFixedName
kmeta.ChildName
https://github.com/knative/sample-source/blob/b93378f82933237f1125f02d716f607820a6bf93/pkg/reconciler/sample/resources/receive_adapter.go#L47
To replace a line like:
utils.GenerateFixedName(args.Source, fmt.Sprintf("samplesource-%s", args.Source.Name))
something like this should work:
kmeta.ChildName(fmt.Sprintf("samplesource-%s-", args.Source.Name), string(args.Source.GetUID())),
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
As mentioned here:
GenerateFixedName
should be deprecated andkmeta.ChildName
used instead.https://github.com/knative/sample-source/blob/b93378f82933237f1125f02d716f607820a6bf93/pkg/reconciler/sample/resources/receive_adapter.go#L47
To replace a line like:
something like this should work:
The text was updated successfully, but these errors were encountered: