alfresco installation issue with helm to kubernetes cluster

cancel
Showing results for 
Search instead for 
Did you mean: 
inova
Member II

alfresco installation issue with helm to kubernetes cluster

trying to install alfresco-content-services with helm command to kubernetes cluster but issue below error. helm command is mentioned below. Could you help to resolve this? 

Error: INSTALLATION FAILED: unable to build kubernetes objects from release manifest: unable to recognize "": no matches for kind "Ingress" in version "networking.k8s.io/v1beta1"

helm command:- 

helm install acs alfresco/alfresco-content-services \
--set postgresql.enabled=false \
--set database.external=true \
--set database.driver="com.mysql.jdbc.Driver" \
--set database.url="jdbc:mysql://11:3306/alfresco?useUnicode=yes&characterEncoding=UTF-8" \
--set database.user="a" \
--set database.password="1" \
--atomic \
--timeout 10m0s \
--namespace=alfresco

1 Reply
asg
Member II

Re: alfresco installation issue with helm to kubernetes cluster

Which version of Kubernetes are you using? My guess would be 1.22 or newer. The networking.k8s.io/v1beta1 api was removed in 1.22 and you have to use networking.k8s.io/v1 now. So the easiest way would be to patch the helm charts to use networking.k8s.io/v1.