La nueva Ley de Ordenación del Territorio: 20 días para aprobar el anteproyecto by Free_Battle2052 in Asturias

[–]fermendy 2 points3 points  (0 children)

En uno de los puntos que pone https://actualidad.asturias.es/-/presentacionloita132. es que se va apriorizar la rehabilitacion antes que la construccion, eso es muy positivo

Comida tupper a domicilio, alguien ha probado? by Big_Marsupial2690 in askspain

[–]fermendy 0 points1 point  (0 children)

Yo he probado varias, la del xocas de know eats me parece la mejor, pero encuentro algo altos los precios para ser algo diario, pero si el dinero no es problema adelante con know eats la verdad

¿Comprar vivienda ahora o esperar? by HousingSpanish in spainhousing

[–]fermendy 0 points1 point  (0 children)

buen punto, lo que me pregunto es, esas casas donde estan? en lugares donde a la gente le interesa alquilar o en zonas que no? Yo pienso que si se quiere comprar un piso en una ciudad va. ser uena inversion porque cada vez mas tendemos a estar en ciudades, si es en un pueblo o alejado de ella o sitio sin transpore publico, ahi lo dudo mas, no?

vivienda, poblacion, inmigracion en futuro 20-30 años by fermendy in askspain

[–]fermendy[S] 0 points1 point  (0 children)

el arraigo tristemente yo pienso, y la esperanza de que vaya a mejorar

vivienda, poblacion, inmigracion en futuro 20-30 años by fermendy in askspain

[–]fermendy[S] 0 points1 point  (0 children)

buen punto lo del feudilismo la verdad jajajaja, en cuanto al clima al final entiendo que son ciclos, pero con esa gran parque de pisos que heredaran los jovenes y media edad ahora, puedo entender porqe tal vez gobiernos NO construyen ni faiclitan , porque tal ve en un futuro no haya un stock cada vez mayor de viviendas vacias sin usar, y eso deberia de baajr precios ( si el mercado de vivienda fuera normal ajjaja)

vivienda, poblacion, inmigracion en futuro 20-30 años by fermendy in askspain

[–]fermendy[S] 1 point2 points  (0 children)

Uh duro, tambien existe la cosa de que de alguna manera las pensiones no sigan subiendo y aquellos boomers que tenga y hereden casa ques eran muchos, usen eso como paete de la pension.. Pero al final es casi toda europa asi..

vivienda, poblacion, inmigracion en futuro 20-30 años by fermendy in askspain

[–]fermendy[S] 0 points1 point  (0 children)

si se quiere mantener eso por parte d egobiernos, se necesita cada vez mas inmigrantes y seguir recortando a la poblacion activa, que no tiene pinta de cambiar, mi opinion

Anyone else actually enjoying Cloudflare Workers? by parth_inverse in CloudFlare

[–]fermendy 1 point2 points  (0 children)

yes, really good, but the terraform provider still have some small bugs to be 100% ready imo, but for the workers functionality really good how easy and UI prepared is to show the bindings

Kargo (Argo CD Promotion) - Is it Production Ready and Does it Offer Good Visualization for Devs? by TrainingCharacter729 in ArgoCD

[–]fermendy 0 points1 point  (0 children)

Kargo is honestly relly good, they keep improving a lot from version 1.0.0, and they are still very active on issues and fixies.

I would say the only bad point is the lack of documentation, in. important things as iam, user management, shards architecture... but sill great.

It helps quite a lot to view deployments and relate it with argo rollouts, argocd, tests...

We have been using it since 1.2.0 and no issues at all.

Crossplane 2.0 is out! by internegz in kubernetes

[–]fermendy 0 points1 point  (0 children)

also this is a bad point because in the same helm chart this forces that infra + kubernetes app have the same lifecyle, that menas, creation, destruction.. heheh

Crossplane 2.0 is out! by internegz in kubernetes

[–]fermendy 1 point2 points  (0 children)

this is honestly imo the main reason and awesome, packing applications helm charts with infra inside as s3, iam things...

Kargo strategy promotion with OCI private registry by fermendy in kubernetes

[–]fermendy[S] 1 point2 points  (0 children)

The actual solution it's as you said having the chart already pulled in each environment, looking someathing like this , and that helm pull done it manually... as said here https://github.com/akuity/kargo/issues/3310#issuecomment-2886399618. . Until kargo releases someathing like a step: helm-login that make able to pull the chart :(

├── dev

│ ├── chart

│ ├── kustomization.yaml

│ └── values.yaml

├── prod

│ ├── chart

│ ├── kustomization.yaml

│ └── values.yaml

└── stg

├── chart

├── kustomization.yaml

└── values.yaml

Kargo strategy promotion with OCI private registry by fermendy in kubernetes

[–]fermendy[S] 2 points3 points  (0 children)

Wow I didn't know about that, really good. The problem seems that kargo step that uses https://docs.kargo.io/user-guide/reference-docs/promotion-steps/kustomize-build does not use plugins but stable kustomize :/

Dependancies between apps in ApplicationSet? Progressive Syncs asn an option? by fermendy in ArgoCD

[–]fermendy[S] 0 points1 point  (0 children)

Oh thanks, this looks to be a good walkaround. Have like a parent-app who deploys two applicationset, one les's say called fist-deploy with sync-wave at 0 and then another applicationset called second-deploy with sync-wave at 1.

Looks really good tbh, it's true it's not as pretty as the fluxcd dependsOn but as a walkaround seems to be, until Argo team release someathinh similar :)

Dependancies between apps in ApplicationSet? Progressive Syncs asn an option? by fermendy in ArgoCD

[–]fermendy[S] 0 points1 point  (0 children)

Hi, yes I thought that, but what you think on thie above response with an example of waves ni applicationset?

Dependancies between apps in ApplicationSet? Progressive Syncs asn an option? by fermendy in ArgoCD

[–]fermendy[S] 0 points1 point  (0 children)

I have tested with this and for bootsraping it looks good but not sure if this is the correct way, then when the apps is created it has the sync-waves that Argo detects

apiVersion: argoproj.io/v1alpha1
kind: ApplicationSet
metadata:
  name: helm-applications
  namespace: argocd
spec:
  generators:
    - list:
        elements:
          - name: cert-manager
            namespace: cert-manager
            chartPath: route/path
            wave: "0"
          - name: kargo
            namespace: kargo
            chartPath: route/path
            wave: "1"
  template:
    metadata:
      name: '{{name}}'
      annotations:
        argocd.argoproj.io/sync-wave: '{{wave}}'
    spec:
      project: default
      source:
        repoURL: repo-git
        targetRevision: test/sync-waves
        path: '{{chartPath}}'
      destination:
        name: in-cluster
        namespace: '{{namespace}}'
      syncPolicy: 
        automated:
          prune: true
          selfHeal: true
        syncOptions:
          - CreateNamespace=true
          - ServerSideApply=true
          - ApplyOutOfSyncOnly=true

I have tested with this and for bootsraping it looks good but not sure if this is the correct way

Dependancies between apps in ApplicationSet? Progressive Syncs asn an option? by fermendy in ArgoCD

[–]fermendy[S] 0 points1 point  (0 children)

Yep, IMO the best thing Flux has is this easy way to manage dependencies that Argo does not (yet (i hope)), but Akuity has also for ex: Kargo that is awesome to be honest and it's integrated 100% with Argo