-
Notifications
You must be signed in to change notification settings - Fork 54
New issue
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
Unable to install using the docs #108
Comments
Intentionally redacted the Public IP and password from the above O/p |
Same for me. |
Same issue encountered today. |
There is an error here: https://github.com/armory/spinnaker-kustomize-patches/blob/minnaker/deploy.sh#L90 Use the needed version instead of 1.2.5 An idea on how to fix - SPIN_OP_VERSION=`curl -s https://github.com/armory/spinnaker-operator/releases/latest | cut -d'"' -f2 | awk '{gsub(".*/v","")}1'`
+ SPIN_OP_VERSION=`curl -s https://api.github.com/repos/armory/spinnaker-operator/releases/latest | jq -r '.tag_name' | cut -c 2-` - SPIN_OP_VERSION=`curl -s https://github.com/armory-io/spinnaker-operator/releases/latest | cut -d'"' -f2 | awk '{gsub(".*/v","")}1'`
+ SPIN_OP_VERSION=`curl -s https://api.github.com/repos/armory-io/spinnaker-operator/releases/latest | jq -r '.tag_name' | cut -c 2-` |
I did by using version 1.2.5 and it should work but i get [INFO ] Cloning repo: https://github.com/armory/spinnaker-kustomize-patches#minnaker into /home/testadmin/minnaker-0.1.3/spinsvc
[WARN ] /home/testadmin/minnaker-0.1.3/spinsvc exists already. FOLDER CONTENTS WILL GET OVERWRITTEN!
[WARN ] PROCEEDING in 3 secs... (ctrl-C to cancel; use -B option to specify a different directory)
Cloning into '/home/testadmin/minnaker-0.1.3/spinsvc'...
remote: Enumerating objects: 2429, done.
remote: Counting objects: 100% (605/605), done.
remote: Compressing objects: 100% (224/224), done.
remote: Total 2429 (delta 454), reused 409 (delta 377), pack-reused 1824
Receiving objects: 100% (2429/2429), 599.07 KiB | 8.44 MiB/s, done.
Resolving deltas: 100% (1432/1432), done.
Every 2.0s: kubectl get pods,spinsvc -n spinnaker hostname: Tue Jun 20 08:32:28 2023
NAME READY STATUS RESTARTS AGE
pod/redis-cf4c79fc5-mrvrb 1/1 Running 0 5m38s
pod/pacrd-controller-manager-64759b7f7d-8b7mz 2/2 Running 0 5m37s
pod/opa-deployment-78648c74b9-9cn2l 2/2 Running 0 5m38s
pod/mysql-0 1/1 Running 0 5m38s
pod/minio-0 0/1 CrashLoopBackOff 5 5m38s
NAME VERSION LASTCONFIGURED STATUS SERVICES URL
spinnakerservice.spinnaker.io/spinnaker Some minio issue testadmin@hostname:~/minnaker-0.1.3$ kubectl -n spinnaker get all -o wide
NAME READY STATUS RESTARTS AGE IP NODE NOMINATED NODE READINESS GATES
pod/redis-cf4c79fc5-mrvrb 1/1 Running 0 27m 10.42.0.10 hostname <none> <none>
pod/pacrd-controller-manager-64759b7f7d-8b7mz 2/2 Running 0 27m 10.42.0.13 hostname <none> <none>
pod/opa-deployment-78648c74b9-9cn2l 2/2 Running 0 27m 10.42.0.9 hostname <none> <none>
pod/mysql-0 1/1 Running 0 27m 10.42.0.14 hostname <none> <none>
pod/minio-0 0/1 CrashLoopBackOff 2 34s 10.42.0.16 hostname <none> <none>
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE SELECTOR
service/minio ClusterIP 10.43.32.28 <none> 9000/TCP 27m app=minio
service/mysql ClusterIP 10.43.186.157 <none> 3306/TCP 27m app=mysql
service/opa ClusterIP 10.43.238.66 <none> 8181/TCP 27m app=opa
service/redis ClusterIP 10.43.120.25 <none> 6379/TCP 27m app=redis,cluster=redis
service/pacrd-controller-manager-metrics-service ClusterIP 10.43.236.5 <none> 8443/TCP 27m control-plane=controller-manager
NAME READY UP-TO-DATE AVAILABLE AGE CONTAINERS IMAGES SELECTOR
deployment.apps/redis 1/1 1 1 27m redis docker.io/redis:latest app=redis,cluster=redis
deployment.apps/pacrd-controller-manager 1/1 1 1 27m kube-rbac-proxy,manager gcr.io/kubebuilder/kube-rbac-proxy:v0.4.1,armory/pacrd:1.0.1 control-plane=controller-manager
deployment.apps/opa-deployment 1/1 1 1 27m opa,kube-mgmt openpolicyagent/opa:0.13.1,openpolicyagent/kube-mgmt:0.9 app=opa
NAME DESIRED CURRENT READY AGE CONTAINERS IMAGES SELECTOR
replicaset.apps/redis-cf4c79fc5 1 1 1 27m redis docker.io/redis:latest app=redis,cluster=redis,pod-template-hash=cf4c79fc5
replicaset.apps/pacrd-controller-manager-64759b7f7d 1 1 1 27m kube-rbac-proxy,manager gcr.io/kubebuilder/kube-rbac-proxy:v0.4.1,armory/pacrd:1.0.1 control-plane=controller-manager,pod-template-hash=64759b7f7d
replicaset.apps/opa-deployment-78648c74b9 1 1 1 27m opa,kube-mgmt openpolicyagent/opa:0.13.1,openpolicyagent/kube-mgmt:0.9 app=opa,pod-template-hash=78648c74b9
NAME READY AGE CONTAINERS IMAGES
statefulset.apps/mysql 1/1 27m mysql mysql:5.7
statefulset.apps/minio 0/1 27m minio minio/minio
testadmin@hostname:~/minnaker-0.1.3$ kubectl -n spinnaker logs -f minio-0
/bin/sh: /usr/bin/minio: No such file or directory |
I am trying to install spinnaker all in one setup following the instructions. However my install script fails with the below error.
When i looked further, it seems that CRDS folder doesn't exist when applying the spinnaker operator.
What am i missing here? Or is this documentation too old to be ignored.
The text was updated successfully, but these errors were encountered: