Are you sure? I’m seeing the content right now.
- 8 Posts
- 14 Comments
Also doesn’t this comes against the decentralization principles of the fediverse?
z3r0@lemmy.zipto Fediverse@lemmy.world•Any good viable alternatives to deviantart, tumblr, and pinterest?English9·4 months agoI’m not a Tumblr fan, but I was told that Wafrn can be a good fediverse replacement for it
z3r0@lemmy.zipto Fediverse@lemmy.world•Any good viable alternatives to deviantart, tumblr, and pinterest?English4·4 months agoCheck this out https://app.wafrn.net/dashboard/exploreLocal
z3r0@lemmy.zipto Android@lemdro.id•End of an era: Nova Launcher's parent company lays off practically everyoneEnglish5·11 months agoI switched to KISS launcher after I knew the company had bought the project. Never came back.
I know someone that will find this interesting.
Thanks!
z3r0@lemmy.zipto DevOps@programming.dev•(Almost) Every infrastructure decision I endorse or regret after 4 years running infrastructure at a startup2·1 year agoIf you still want more you can use Helmfile. Take care of your PMs 😁
z3r0@lemmy.zipto DevOps@programming.dev•(Almost) Every infrastructure decision I endorse or regret after 4 years running infrastructure at a startup2·1 year agoI understand your point. Anyway, if your devs are using Helm they can still use Sops with the helm-secrets plugin. Just create a separated values file (can be named as secrets.yaml) contaning all sensitive values and encrypt it with Sops.
z3r0@lemmy.zipto DevOps@programming.dev•(Almost) Every infrastructure decision I endorse or regret after 4 years running infrastructure at a startup2·1 year agoWhat do you think about storing your encrypted secrets in your repos using Sops?
If an entire region goes down, the Terraform status file stored there will not be useful at all because it only stores information about the resources you deployed in that particular region and your resources deployed there will also go down.
Replicating the status file in another region will not be useful either because it will only contain information about the resources that are down in your region.
The status file inventories all the resources you have deployed to your cloud provider. Basically Terraform uses it to know what resources are being managed by the current Terraform code and to be idempotent.
If you want to set up another region for disaster recovery (Active-Passive) you can use the same Terraform code, but use a different configuration (meaning different tfvars files) to deploy the resources to a different region (not necessarily to another account). Just make sure that all your data is replicated into the passive region.
z3r0@lemmy.zipto Programming@programming.dev•Gitness: Open-source code hosting and pipeline engine1·2 years agoMy apologies if I’m saying something stupid, but I see that this is built on top of Drone, which stopped being Open Source several years ago. Does this means that Drone, as part of Gitness, has become Open Source again?
z3r0@lemmy.zipto Piracy: ꜱᴀɪʟ ᴛʜᴇ ʜɪɢʜ ꜱᴇᴀꜱ@lemmy.dbzer0.com•Youtube - like apps like piped.video, but as Android app?English3·2 years agoNew Pipe unofficial fork with Sponsor Block if you want to skip ads
This is a very interesting approach that we are starting to fully adopt in our organization for our Kubernetes deployments.
We switched from Helm (using Helmfile) to ArgoCD to deploy applications into our clusters.
The main challenge here is how to design a good repository structure to organize the ArgoCD applications because there is nothing said about which is the best approach that must be followed.
Finally we decided to use ApplicationSets to deploy umbrella charts that are defined in the repo. The
Chart.yaml
of our umbrellas contain the charts that we really want to deploy as if they were dependencies (such as as Ingress Nginx) and their chart versions and thevalues.yaml
contains the values for a particular cluster.Another interesting issue is how we manage secrets. We were using sops along with helm secrets plugin to automatically decrypt secrets when running
helmfile apply
. Fortunatelly the helm secrets plugin can be installed as an addon on ArgoCD via an initScript or developing a custom ArgoCD image.
How is that?