Ir al contenido principal

Understanding Liveness, Readiness and Startup Probes in Kubernetes

 This is a small article about understanding the liveness, readiness and startup in kubernetes.  There's good explanation in the kubernetes documentation: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/ This video also explains well the process: https://www.youtube.com/watch?v=aTlQBofihJQ But I wanted to understand it in a practical way. So I have this demo: https://github.com/DiegoTc/guest-book-js-docker/tree/Running-App-Version-1 It's a simple application running on a kubernetes cluster. https://github.com/DiegoTc/guest-book-js-docker/blob/Running-App-Version-1/argo/deployment.yaml apiVersion: apps/v1 kind: Deployment metadata: name: chat-ui spec: replicas: 1 revisionHistoryLimit: 3 selector: matchLabels: app: chat-ui template: metadata: labels: app: chat-ui spec: containers: - image: diegotc/guestbook:20230803-064434 imagePullPolicy: Always nam

Corrupcion en el Seguro Social

Es la noticia que esta de "moda" actualmente en el país. Pero solo hasta allí llega. Nadie detalla a fondo lo que la comisión descubrió o quienes son los responsables.
Dejo unas partes del informe de la comisión. Tal vez se sorprenden de las maravillas que hay en ese pdf de mas de 100 paginas.

Camas Unitarias
Las camas unitarias fueron comprados 11 veces mas cara de su precio real.
En el mercado el precio de cada cama es de  $5000. El IHSS las compro a $54,000
Pagina 70 del informe de la comisión
Igualmente, debe señalarse que el valor del ítems 2.B.16, 2.B.17, y 2.B.18, éste último llamado camas eléctricas tiene un precio unitario en el mercado de aproximadamente US$5,000, que no son comparables con el valor unitario contenido en la oferta por la cantidad de US$54,000, sin embargo, esta apreciación debe ser turnada a un especialista con mayores herramientas científicas y técnicas para establecer el justiprecio del contrato.

Equipo Biomedico

La empresa responsable de vender estos productos sobre valorados es DIMESA (Distribuidora Metropolitana Sociedad Anonima)

Quienes son sus socios?
  • Elena Larach Kafie
  • Shucri Kafie Larach
  • Luis Kafie Larach
  • Rosmarie Kafie Larach
  • Edelmira Cruz Espinal
  • Rosminda Avila Mendoza
  • Eduardo Kafie Larach
Y Juan Alberto Madrid Casaca, es su representante legal.
Esto lo pueden validar en la pagina 66 primer inciso.


Ambulancias
Decidieron comprar ambulancias que cuestan el doble y su calidad es menor.


Pagina 98 del informe

Pasajes de avión

Existe 37 copias de facturas de J&J Travel and Tours que suman L1, 808,000.00, dentro de las cuales se detallan viajes con ruta SPS-TGU-SPS, a favor de Luis Joya y Oscar Galeano, por un valor de L8, 000 cada boleto ida y Vuelta, asimismo detalla viajes con ruta TGU-SPS-TGU a favor de varios funcionarios y miembros de la Junta Directiva, por igual valor.
Pagina 97.

Que cuesta viajar en avión de San Pedro Sula a Tegucigalpa?

Avianca

El pasage mas caro vale $102 un equivalente a 2050 lempiras aproximadamente. Pero los empleados del IHSS se iban en aviones que el pasaje valía cuatro veces mas.

Si quieren leer todo el informe lo pueden leer aqui



Comentarios

Entradas populares de este blog

Understanding Liveness, Readiness and Startup Probes in Kubernetes

 This is a small article about understanding the liveness, readiness and startup in kubernetes.  There's good explanation in the kubernetes documentation: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/ This video also explains well the process: https://www.youtube.com/watch?v=aTlQBofihJQ But I wanted to understand it in a practical way. So I have this demo: https://github.com/DiegoTc/guest-book-js-docker/tree/Running-App-Version-1 It's a simple application running on a kubernetes cluster. https://github.com/DiegoTc/guest-book-js-docker/blob/Running-App-Version-1/argo/deployment.yaml apiVersion: apps/v1 kind: Deployment metadata: name: chat-ui spec: replicas: 1 revisionHistoryLimit: 3 selector: matchLabels: app: chat-ui template: metadata: labels: app: chat-ui spec: containers: - image: diegotc/guestbook:20230803-064434 imagePullPolicy: Always nam

Getting Docker Syntax In Gedit

I have been working with docker in the last days, and encounter the syntax issue with gedit. Just pure plain text. So make a small search and found an easy way for fixing this. I found Jasper J.F. van den Bosch repository in GitHub and found the solution for this simple problem. We need to download the docker.lang file, available here:  https://github.com/ilogue/docker.lang/blob/master/docker.lang After that, you go to the folder you save the file and do the following command. sudo mv docker.lang /usr/share/gtksourceview-3.0/language-specs/  If this doesn't work you can try the following: sudo mv docker.lang  ~/.local/share/gtksourceview-3.0/language-specs/ And that's all! Screenshot of gedit with no docker lang Screenshot of gedit with docker lang

Ansible using plugins for dynamic inventories

This is a small post about how to use inventory plugins in Ansible. If you are looking the script way I recommend to read this article: http://gloriasilveira.com/setting-up-ansible-for-aws-with-dynamic-inventory-ec2.html It explains really good this or you can watch this video: https://www.youtube.com/watch?v=LnbqO1kTPqE&t=6s But if you’re looking to use inventory this article can help you. First of all, why should I used inventory if all over the internet they’re using the python scripts? Well, Ansible recommends it: Inventory plugins take advantage of the most recent updates to Ansible’s core code. We recommend plugins over scripts for dynamic inventory. You can write your own plugin to connect to additional dynamic inventory sources. https://docs.ansible.com/ansible/latest/user_guide/intro_dynamic_inventory.html The actual ansible guide is quite good, but there was a step that got me confused, probably my english isn’t so good and I didn’t understood it. We need to ena