I'm installing the component pack 6.5.0.0 for HCL Connections. Orient me works, but after deploying the customizer, my mw-proxy pods got stuck at ContainerCreating. They show the following event log error:
MountVolume.SetUp failed for volume "appregistry-mw-proxy-secret-vol" : secrets "appregistry-mw-proxy-secret" not foundI never heared of those secret and looked inside the chart. mw-proxy-cloud-deployment.yaml try to mount those secret:
  volumes:
    - name: nfs
      persistentVolumeClaim:
       claimName: customizernfsclaim
    - name: appregistry-mw-proxy-secret-vol
      secret:
        secretName: appregistry-mw-proxy-secretThe problem is that I could not found any information what this secret is for and how it should be mounted. In the documentation they just require bootstrap, connections-env and infrastructure charts. All of them were installed. I just tried creating some file as secret:
echo Test123 > pwd-test
k create secret generic appregistry-mw-proxy-secret --from-file=pwd-testAfter deleting all the pods, they came up running. But I don't know what this secret is for and what the customizer expects. Maybe this break some functionality of the application.
My questions are:
Have you tried to add the parameter env.force_regenerate=true to the bootstrap helmchart ? There's also the createSecret=true in the connections-env helm chart.