One thought is this ```k8s.core.v1.ServiceAccount....
# general
r
One thought is this
Copy code
k8s.core.v1.ServiceAccount.get(
  'default',
  'openfaas-fn/default'
).imagePullSecrets.apply((pullSecrets) => {
  if (!pullSecrets.find((s) => s.name === 'registry-pull-secret')) {
    pullSecrets.push({ name: 'registry-pull-secret' })
  }
})