skip to Main Content

Running a script with Terraform – Debian

For learning purpose, I'm trying to install and setup my own Kubernetes Cluster on GCP. I want to provision my instances on GCP with a bootstrap script. Here is my google_compute_instance config resource "google_compute_instance" "default" { name = var.vm_name machine_type…

VIEW QUESTION

Error invoking scheduled task Error instantiating bean of type [io.micronaut.configuration.lettuce.health.RedisHealthIndicator]

I have the following problem when running this schedule. @Singleton public class TaskScheduler { private static final Logger LOG = LoggerFactory.getLogger(TaskScheduler.class); @Inject private BuildLayerJob buildLayerJob; @Scheduled(fixedDelay = "30s", initialDelay = "30s") public void loadRegistriesDescriptions(){ try { LOG.info("Cargando lista de registries…

VIEW QUESTION
Back To Top
Search