I have a proget 25.0.18 connected to sql server. I setup dedicated pv and pvc for blobs and packages I do not have any error ate this stage. The InitContainer sequence
initContainers:
- name: upgradedb
image: "proget.inedo.com/productimages/inedo/proget:25.0.18"
command: ["/usr/local/proget/service/proget", "upgradedb"]
env:
- name: PROGET_SQL_CONNECTION_STRING
valueFrom:
secretKeyRef:
name: connection-string
key: sql-connection-string
- name: PROGET_ENCRYPTION_KEY
valueFrom:
secretKeyRef:
name: encryption-key
key: encryption-key
The pod description shows me that the initcontainer never start
Init Containers:
│ upgradedb:
│ Container ID:
│ Image: proget.inedo.com/productimages/inedo/proget:25.0.18 │
│ Image ID:
│ Port: <none>
│ Host Port: <none>
│ Command:
│ /usr/local/proget/service/proget
│ upgradedb
│ State: Waiting
│ Reason: PodInitializing
│ Ready: False
│ Restart Count: 0
│ Environment:
│ PROGET_SQL_CONNECTION_STRING:
The main problem is that there is no log, so I'm not able to understand where the system failed. Is there a way to track the initcontainer.
Regards