-
Notifications
You must be signed in to change notification settings - Fork 89
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
snipe-it doesn't work out of box #127
Comments
Is your artisan key correctly generated like we describe in our README? |
Yes, I am passing a generated key to helm via a values file:
|
@bentatham I just tested it in Minikube and for me it works. Can you try the new Chart version please? |
3.1.0 is failing to run out of the box for me too. The readiness probe is failing and the container is spitting out the following:
|
@darkpixel Are you using the mysql 5.7.32 from our repository (or the default one the snipeit chart uses when not specifying a different mysql service)? |
I'm using a managed MySQL instance at Digital Ocean.
|
Hi, I am having the same issue. resource "helm_release" "snipe_it" {
name = local.snipe_it.name
repository = "https://storage.googleapis.com/t3n-helm-charts"
chart = "snipeit"
version = "3.1.0"
namespace = local.snipe_it.namespace
lint = false
reset_values = true
values = [
yamlencode({
image = {
tag = "v5.0.12"
}
config = {
snipeit = {
key = data.aws_ssm_parameter.snipe_it_key.value
debug = true
}
}
ingress = {
enabled = true
annotations = {
"kubernetes.io/ingress.class" = "alb"
"alb.ingress.kubernetes.io/scheme" = "internet-facing"
"alb.ingress.kubernetes.io/listen-ports" = jsonencode([{ HTTPS = 443 }])
"alb.ingress.kubernetes.io/group.name" = "infra-external"
"alb.ingress.kubernetes.io/certificate-arn" = aws_acm_certificate.subdomain.arn
"alb.ingress.kubernetes.io/target-type" = "ip"
"alb.ingress.kubernetes.io/success-codes" = "200"
}
path = "/*"
hosts = [
local.snipe_it.fqdn
]
}
})
]
}
|
I downgraded to chart version |
This issue should be fixed with #151 |
When doing a fresh installation of snipe-it, the readinessProbe fails.
I worked around this by doing some php magic to make the web page work at all :(https://stackoverflow.com/questions/55448836/from-laravel-i-got-failed-to-open-stream-permission-denied).
After that, snipe-it starts (at least, but then runs into other mysql issues).
The text was updated successfully, but these errors were encountered: