This message was deleted.
# general
a
This message was deleted.
s
i am using nexus. whats the image and set up that you used?
f
I used helm to deploy nexus 3.X with a deployment.yAml and service.yaml https://developer.entando.com/v6.2/tutorials/ecr/how-to-setup-nexus-on-kubernetes-cluster.html#steps
s
whats the error and whats your actual yaml that you used?
f
I don't have an error..it's not being exposed when I'm trying to access nexus from the url address..the yaml is the same from the link
apiVersion: extensions/v1beta1 kind: Deployment metadata: name: nexus namespace: nexus spec: replicas: 1 selector: matchLabels: app: nexus-server template: metadata: labels: app: nexus-server spec: containers: ◦ name: nexus image: sonatype/nexus3:latest resources: limits: memory: "4Gi" cpu: "1000m" requests: memory: "2Gi" cpu: "500m" ports: ◦ containerPort: 8081 volumeMounts: ◦ name: nexus-data mountPath: /nexus-data volumes: ◦ name: nexus-data emptyDir: {}
apiVersion: v1 kind: Service metadata: name: nexus-service namespace: devops-tools annotations: prometheus.io/scrape: 'true' prometheus.io/path: / prometheus.io/port: '8081' spec: selector: app: nexus-server type: NodePort ports: ◦ port: 8081 targetPort: 8081 nodePort: 32000
Just curious if the docker image needs to be build prior to helm deploy
s
ok. whats in the conmtyainer log? it can take abit to start
initially
whats the url adddress and does that match to the node it sits on?
no need to provide adddress but would still like to sddfress second questoion
f
I disabled traefik and helm installed nginx as the Ingres controller...the nexus pod spinned up but I'll have to fetch the container log and I'll post it later today or by tomorrow morning
Are u referring to the node cluster ip? Or rancher node domain name ?
s
the cluster ip cannot be rteached by the outside worldf
are yoiu putting in the node ip?
f
Are you referencing the master or worker node ip that's it's deployed in?
Thanks I figured it out when you hinted mode ip...nexus is running
It's just stuck at initializing within the UI from the above screenshot
182 Views