Installed Spinnaker with Helm now can't get ECR to work
I installed Spinnaker onto a kubernetes cluster created with kops (with ECR policy included). Now I use the below command to connect to where the halyard is installed, issue is I need to install the aws cli but it won't let me...
kubectl -n default exec -it spinnaker-spinnaker-halyard-0 bash
The only post I could find online about this issue was
[https://stackoverflow.com/questions/54804772/spinnaker-with-halyard-from-helm-chart-has-missing-aws-cli](https://stackoverflow.com/questions/54804772/spinnaker-with-halyard-from-helm-chart-has-missing-aws-cli)
It says a solution is pretty much it's not needed however I am then confused as to why my registry isn't showing up and I'm getting the below error/warning message. I know it says it was successful however it goesn't show up anywhere and if there was no password it won't work right?
spinnaker@spinnaker-spinnaker-halyard-0:/workdir$ hal config provider docker-registry account add my-ecr-registry --address $ADDRESS --username AWS --password-command "aws --region $REGION ecr get-authorization-token --output text --query 'authorizationData[].authorizationToken' | base64 -d | sed 'hal config provider docker-registry account deletes/^AWS://'"
+ Get current deployment
Success
+ Add the my-ecr-registry account
Success
Problems in default.provider.dockerRegistry.my-ecr-registry:
- WARNING Password command returned non 0 return code,
stderr/stdout was:bash: aws: command not found
sed: -e expression #1, char 2: extra characters after command
- WARNING Resolved Password was empty, missing dependencies for
running password command?
- WARNING You have a supplied a username but no password.
- WARNING Your docker registry has no repositories specified, and
the registry's catalog is empty. Spinnaker will not be able to deploy any images
until some are pushed to this registry.
? Manually specify some repositories for this docker registry to
index.
Problems in halconfig:
- WARNING There is a newer version of Halyard available (1.28.0),
please update when possible
? Run 'sudo apt-get update && sudo apt-get install
spinnaker-halyard -y' to upgrade
+ Successfully added account my-ecr-registry for provider
dockerRegistry.
https://redd.it/dzbgpt
@r_devops
I installed Spinnaker onto a kubernetes cluster created with kops (with ECR policy included). Now I use the below command to connect to where the halyard is installed, issue is I need to install the aws cli but it won't let me...
kubectl -n default exec -it spinnaker-spinnaker-halyard-0 bash
The only post I could find online about this issue was
[https://stackoverflow.com/questions/54804772/spinnaker-with-halyard-from-helm-chart-has-missing-aws-cli](https://stackoverflow.com/questions/54804772/spinnaker-with-halyard-from-helm-chart-has-missing-aws-cli)
It says a solution is pretty much it's not needed however I am then confused as to why my registry isn't showing up and I'm getting the below error/warning message. I know it says it was successful however it goesn't show up anywhere and if there was no password it won't work right?
spinnaker@spinnaker-spinnaker-halyard-0:/workdir$ hal config provider docker-registry account add my-ecr-registry --address $ADDRESS --username AWS --password-command "aws --region $REGION ecr get-authorization-token --output text --query 'authorizationData[].authorizationToken' | base64 -d | sed 'hal config provider docker-registry account deletes/^AWS://'"
+ Get current deployment
Success
+ Add the my-ecr-registry account
Success
Problems in default.provider.dockerRegistry.my-ecr-registry:
- WARNING Password command returned non 0 return code,
stderr/stdout was:bash: aws: command not found
sed: -e expression #1, char 2: extra characters after command
- WARNING Resolved Password was empty, missing dependencies for
running password command?
- WARNING You have a supplied a username but no password.
- WARNING Your docker registry has no repositories specified, and
the registry's catalog is empty. Spinnaker will not be able to deploy any images
until some are pushed to this registry.
? Manually specify some repositories for this docker registry to
index.
Problems in halconfig:
- WARNING There is a newer version of Halyard available (1.28.0),
please update when possible
? Run 'sudo apt-get update && sudo apt-get install
spinnaker-halyard -y' to upgrade
+ Successfully added account my-ecr-registry for provider
dockerRegistry.
https://redd.it/dzbgpt
@r_devops
Stack Overflow
Spinnaker with Halyard from Helm Chart has missing aws cli
I create Spinnaker from Helm Chart (https://github.com/helm/charts/tree/master/stable/spinnaker).
Then I want to add ECR to my Spinnaker. I connect to haylard:
kubectl exec -it -n spinnaker spinn...
Then I want to add ECR to my Spinnaker. I connect to haylard:
kubectl exec -it -n spinnaker spinn...
I bought c5.xlarge reserved instances but my reservation coverage report in cost explorer seems to map them to c5.large
My company has some c5.large and c5.xlarge instances. We bought c5.xlarge reserved instances expecting them to cover our c5.xlarge on demand instances.
What happened instead though is according to the reservation coverage report in cost explorer, all of our c5.large instances are now covered by these c5.xlarge reserved instances, and only 2 of our c5.xlarge instances are covered.
It seems as though for some reason that, although we bought xlarge, amazon gave priority to our large instances for coverage. This doesn't seem right or fair to me.
All of our instances are in US-East, so it's not a region problem.
https://redd.it/dz6lxt
@r_devops
My company has some c5.large and c5.xlarge instances. We bought c5.xlarge reserved instances expecting them to cover our c5.xlarge on demand instances.
What happened instead though is according to the reservation coverage report in cost explorer, all of our c5.large instances are now covered by these c5.xlarge reserved instances, and only 2 of our c5.xlarge instances are covered.
It seems as though for some reason that, although we bought xlarge, amazon gave priority to our large instances for coverage. This doesn't seem right or fair to me.
All of our instances are in US-East, so it's not a region problem.
https://redd.it/dz6lxt
@r_devops
reddit
I bought c5.xlarge reserved instances but my reservation coverage...
My company has some c5.large and c5.xlarge instances. We bought c5.xlarge reserved instances expecting them to cover our c5.xlarge on demand...
Docker best practice when deploying php app?
Hi, this is my first post, and I wanted to hear opinions how do you deploy PHP or JS applications within Docker? Our dev teams mainly use Simphony for back end , and JS based frameworks for frontend, so would multi-stage build be good approach.
For example, app gets compiled in first step, then \`COPY\`-ed into the actual production image which is slimmed, and shipped with only binaries required to run app (compiling stuff is 'left' at first step).
2nd approach I am thinking of is using CI for building app, then deployed as docker container?
Or, there are some more preferable options?
https://redd.it/dyyzp8
@r_devops
Hi, this is my first post, and I wanted to hear opinions how do you deploy PHP or JS applications within Docker? Our dev teams mainly use Simphony for back end , and JS based frameworks for frontend, so would multi-stage build be good approach.
For example, app gets compiled in first step, then \`COPY\`-ed into the actual production image which is slimmed, and shipped with only binaries required to run app (compiling stuff is 'left' at first step).
2nd approach I am thinking of is using CI for building app, then deployed as docker container?
Or, there are some more preferable options?
https://redd.it/dyyzp8
@r_devops
reddit
Docker best practice when deploying php app?
Hi, this is my first post, and I wanted to hear opinions how do you deploy PHP or JS applications within Docker? Our dev teams mainly use Simphony...
bpf filter
Was wondering if it possible to do until in BPF ([https://en.wikipedia.org/wiki/Berkeley\_Packet\_Filter](https://en.wikipedia.org/wiki/Berkeley_Packet_Filter)). Say I have a message that begins with ASCII "ABC" and ends with "XYZ" but it spans multiple packets. I couldn't figure out with BPF if I can follow or do until.
https://redd.it/dz0wzu
@r_devops
Was wondering if it possible to do until in BPF ([https://en.wikipedia.org/wiki/Berkeley\_Packet\_Filter](https://en.wikipedia.org/wiki/Berkeley_Packet_Filter)). Say I have a message that begins with ASCII "ABC" and ends with "XYZ" but it spans multiple packets. I couldn't figure out with BPF if I can follow or do until.
https://redd.it/dz0wzu
@r_devops
Fugue Developer is now free - cloud security and visualization for engineers
I'm a co-founder of Fugue, and today we announced Fugue Developer, a free forever tier for individual engineers to build and maintain secure cloud infrastructure in highly dynamic and regulated cloud environments. It provides tools to visualize cloud infrastructure environments, detect resource misconfiguration and policy violations, report on compliance, and understand infrastructure change. Fugue supports AWS and Azure.
[https://www.fugue.co/blog/fugue-developer-free-cloud-security-and-visualization-for-engineers](https://www.fugue.co/blog/fugue-developer-free-cloud-security-and-visualization-for-engineers)
https://redd.it/dzj632
@r_devops
I'm a co-founder of Fugue, and today we announced Fugue Developer, a free forever tier for individual engineers to build and maintain secure cloud infrastructure in highly dynamic and regulated cloud environments. It provides tools to visualize cloud infrastructure environments, detect resource misconfiguration and policy violations, report on compliance, and understand infrastructure change. Fugue supports AWS and Azure.
[https://www.fugue.co/blog/fugue-developer-free-cloud-security-and-visualization-for-engineers](https://www.fugue.co/blog/fugue-developer-free-cloud-security-and-visualization-for-engineers)
https://redd.it/dzj632
@r_devops
www.fugue.co
Fugue Developer: Free Cloud Security and Visualization for Engineers
Today, we announced Fugue Developer, a free tier of Fugue for individual engineers to build and maintain secure cloud infrastructure and easily demonstrate compliance.
Will continuous security actually save time?
[https://www.portshift.io/you-need-to-shift-left-for-app-security/](https://www.portshift.io/you-need-to-shift-left-for-app-security/)
Came across this recently. It's an interesting read and I'm considering switching but before I commit I'm wondering if anyone has implemented this software & if it saved time? I'm looking to switch because my current software has been having glitches & I don't want to make the same mistake again.
https://redd.it/dz0q0n
@r_devops
[https://www.portshift.io/you-need-to-shift-left-for-app-security/](https://www.portshift.io/you-need-to-shift-left-for-app-security/)
Came across this recently. It's an interesting read and I'm considering switching but before I commit I'm wondering if anyone has implemented this software & if it saved time? I'm looking to switch because my current software has been having glitches & I don't want to make the same mistake again.
https://redd.it/dz0q0n
@r_devops
Portshift
You Need to Shift Left for App Security - Portshift Blog
Shift left is the latest approach to move security to an earlier stage in the app development. Portshift’s solution helps DevOps teams to shift left.
Deploying a Web App to Run Locally on Client Machines
Hi everyone,
I am currently building a Web App with a Django backend and a Vue.js frontend, which is planned to be deployed locally to the machines of my clients.
My question is the following: how do I deploy this to another persons computer in the least complicated way possible for them? Is there an easy way to achieve this that does not require substantial technical know-how on the users side to get the app up and running? I have considered deploying the app as a docker image, as this would ensure that the client would not suffer from dependency issues and offer a relatively smooth way to deploy, but in my case it isn't ideal since my end users are not going to be technically-minded. Furthermore, I am wary of the security and IP issues that deploying the application via the Docker route may entail (since anyone would have root access to the container, and therefore my source code).
I also understand that there are GUI frameworks I could use in this situation, such as Electron for JavaScript or any of the many Python libraries, but neither of these fits my requirements fully, since I would prefer to write Python on the back-end of the application (taking Electron out of the running) and I am not impressed by the aesthetic quality of what I have seen from Python GUI frameworks (taking Tkinter etc. out of the running).
As such, I would like to explore whether or not there is a simple way of starting my Web App locally on my clients machine in a way that would involve as little hassle as possible. I could personally do the implementation on-site, and smooth out any initial issues that may arise, but the approach should ideally be robust to extended usage and straightforward for individuals without extensive technical knowledge.
Thanks in advance!
https://redd.it/dz0ke2
@r_devops
Hi everyone,
I am currently building a Web App with a Django backend and a Vue.js frontend, which is planned to be deployed locally to the machines of my clients.
My question is the following: how do I deploy this to another persons computer in the least complicated way possible for them? Is there an easy way to achieve this that does not require substantial technical know-how on the users side to get the app up and running? I have considered deploying the app as a docker image, as this would ensure that the client would not suffer from dependency issues and offer a relatively smooth way to deploy, but in my case it isn't ideal since my end users are not going to be technically-minded. Furthermore, I am wary of the security and IP issues that deploying the application via the Docker route may entail (since anyone would have root access to the container, and therefore my source code).
I also understand that there are GUI frameworks I could use in this situation, such as Electron for JavaScript or any of the many Python libraries, but neither of these fits my requirements fully, since I would prefer to write Python on the back-end of the application (taking Electron out of the running) and I am not impressed by the aesthetic quality of what I have seen from Python GUI frameworks (taking Tkinter etc. out of the running).
As such, I would like to explore whether or not there is a simple way of starting my Web App locally on my clients machine in a way that would involve as little hassle as possible. I could personally do the implementation on-site, and smooth out any initial issues that may arise, but the approach should ideally be robust to extended usage and straightforward for individuals without extensive technical knowledge.
Thanks in advance!
https://redd.it/dz0ke2
@r_devops
reddit
Deploying a Web App to Run Locally on Client Machines
Hi everyone, I am currently building a Web App with a Django backend and a Vue.js frontend, which is planned to be deployed locally to the...
How do you integrate DevOps best practices with no time?
Within the past year, I was hired on as a cloud engineer by a small company who is 100% in the cloud using some pretty exciting AWS/GCP services. I quickly came to realize that they're 100% cloud running legacy IaaS applications... Though they are actively working to decouple these monolith applications its really taken up all of my time supporting and just simply maintaining basic functionality of these systems and the peta-bytes of data to go with it.
The company has given us (DevOps) the directive to automate and improve upon the infrastructure, allowing us to find and use solutions regardless of the cost. If you had the ability to create the budget but little to no time to implement the automation, how would you go about it? Would you hire consulting to setup the basic infrastructure or hire a lower level guy to take the "mundane" tasks away to give yourself time to implement?
https://redd.it/dzlqxk
@r_devops
Within the past year, I was hired on as a cloud engineer by a small company who is 100% in the cloud using some pretty exciting AWS/GCP services. I quickly came to realize that they're 100% cloud running legacy IaaS applications... Though they are actively working to decouple these monolith applications its really taken up all of my time supporting and just simply maintaining basic functionality of these systems and the peta-bytes of data to go with it.
The company has given us (DevOps) the directive to automate and improve upon the infrastructure, allowing us to find and use solutions regardless of the cost. If you had the ability to create the budget but little to no time to implement the automation, how would you go about it? Would you hire consulting to setup the basic infrastructure or hire a lower level guy to take the "mundane" tasks away to give yourself time to implement?
https://redd.it/dzlqxk
@r_devops
reddit
How do you integrate DevOps best practices with no time?
Within the past year, I was hired on as a cloud engineer by a small company who is 100% in the cloud using some pretty exciting AWS/GCP services....
GitLab-ci alternative on github
I am planing to move project I have on GitLab where I have CI configured with agent installed on one of my workers to GitHub. According to https://github.com/marketplace/category/continuous-integration there are number of integration with various with CI tools, could anyone give me a hint what is the easiest method to do so?
https://redd.it/dzmcz1
@r_devops
I am planing to move project I have on GitLab where I have CI configured with agent installed on one of my workers to GitHub. According to https://github.com/marketplace/category/continuous-integration there are number of integration with various with CI tools, could anyone give me a hint what is the easiest method to do so?
https://redd.it/dzmcz1
@r_devops
GitHub
GitHub Marketplace: to improve your workflow
Find the that help your team build better, together.
Custom Autoscaling in Kubernetes
https://www.reddit.com/r/kubernetes/comments/dzmswt/custom_autoscaling_in_kubernetes/
https://redd.it/dzohj7
@r_devops
https://www.reddit.com/r/kubernetes/comments/dzmswt/custom_autoscaling_in_kubernetes/
https://redd.it/dzohj7
@r_devops
reddit
Custom Autoscaling in Kubernetes
Hi, for the past few months I've been working on an open source project to let people write their own scaling logic for Kubernetes - based largely...
Hashicorp Vault Policy Management
Hey all,
Quick background, my team is currently working on getting Vault up and running so that it can be used by the other teams where I work. There are going to be dozens of different teams and different applications that will be requiring access to Vault and each having its own use case.
Based off the research I have already done, ideally the policies would be tested through a jenkins pipeline before being applied to a cluster and there would need to be some form of approval process around these policies to insure that teams don't use things don't need. Using namespaces is going to be huge because of keeping everything separate from each other.
So, my question is, does anyone have any recommendations for best practices to follow when managing the inevitable mountain of policies that are going to be necessary for running this? Also, are there any lessons that you learned when you started using Vault? Or any thing else that you think would be useful.
Thank you.
https://redd.it/dzkggz
@r_devops
Hey all,
Quick background, my team is currently working on getting Vault up and running so that it can be used by the other teams where I work. There are going to be dozens of different teams and different applications that will be requiring access to Vault and each having its own use case.
Based off the research I have already done, ideally the policies would be tested through a jenkins pipeline before being applied to a cluster and there would need to be some form of approval process around these policies to insure that teams don't use things don't need. Using namespaces is going to be huge because of keeping everything separate from each other.
So, my question is, does anyone have any recommendations for best practices to follow when managing the inevitable mountain of policies that are going to be necessary for running this? Also, are there any lessons that you learned when you started using Vault? Or any thing else that you think would be useful.
Thank you.
https://redd.it/dzkggz
@r_devops
reddit
Hashicorp Vault Policy Management
Hey all, Quick background, my team is currently working on getting Vault up and running so that it can be used by the other teams where I work....
Container orchestration for single host production setups
I mostly deal with single host deployments, because high availability isn't a requirement, but I find the advantages that containers and orchestration tools provide pretty useful for developing and deploying applications. At the moment I'm using Docker Swarm mode to manage the handful of containers on each host, and this works fine. The main reason I'm using Swarm with a single host is the ability to run multiple replicas of my app containers so I can deploy updates with healthchecks and without downtime. I'm of course aware of Kubernetes, but find it far too complex and overkill for a single node setup. I'm still considering using k8s or k3s with Rancher, but since it's highly discouraged for production, I'm kind of wary.
Since Docker, the company, is going through all these changes and the future of Swarm is bleak, I was wondering if there are any other container orchestration solutions which have the following features:
* Simple configuration and setup like Docker Compose/Swarm
* Production-ready on single hosts
* Has some type of bridge networking to connect services easily
* Rolling updates without downtime
* Can rollback containers if needed
* Is actively developed and isn't about to be deprecated
https://redd.it/dzh94w
@r_devops
I mostly deal with single host deployments, because high availability isn't a requirement, but I find the advantages that containers and orchestration tools provide pretty useful for developing and deploying applications. At the moment I'm using Docker Swarm mode to manage the handful of containers on each host, and this works fine. The main reason I'm using Swarm with a single host is the ability to run multiple replicas of my app containers so I can deploy updates with healthchecks and without downtime. I'm of course aware of Kubernetes, but find it far too complex and overkill for a single node setup. I'm still considering using k8s or k3s with Rancher, but since it's highly discouraged for production, I'm kind of wary.
Since Docker, the company, is going through all these changes and the future of Swarm is bleak, I was wondering if there are any other container orchestration solutions which have the following features:
* Simple configuration and setup like Docker Compose/Swarm
* Production-ready on single hosts
* Has some type of bridge networking to connect services easily
* Rolling updates without downtime
* Can rollback containers if needed
* Is actively developed and isn't about to be deprecated
https://redd.it/dzh94w
@r_devops
reddit
Container orchestration for single host production setups
I mostly deal with single host deployments, because high availability isn't a requirement, but I find the advantages that containers and...
Support Guy - Zero programming
Hello everyone,
I'm trying very hard to learn programming as I'm getting insults in my workplace. My juniors are good in programming and they talk technically on programs and stuff .I'm stuck there . I work 10 to 12 hours on office mundane work , assign tasks , follow up and report to leader ship etc.. I'm not that great leader too . In the process of leading a team with 8 years support experience.
I feel very bad for my career decisions. I would like to somehow learn python programming alone to the expert level from zero .
After coming from office , I will have to attend calls from onsite folks and update the updates as well and my energy goes down .
Apart from programming, what is the best roadmap for hot skills in the market,
1.Cloud Aws
2.Cloud GCP
3.Devops
4.Docker
5.Kubernets .
Can someone please take a time to respond.. thanks all.
https://redd.it/dzgt2d
@r_devops
Hello everyone,
I'm trying very hard to learn programming as I'm getting insults in my workplace. My juniors are good in programming and they talk technically on programs and stuff .I'm stuck there . I work 10 to 12 hours on office mundane work , assign tasks , follow up and report to leader ship etc.. I'm not that great leader too . In the process of leading a team with 8 years support experience.
I feel very bad for my career decisions. I would like to somehow learn python programming alone to the expert level from zero .
After coming from office , I will have to attend calls from onsite folks and update the updates as well and my energy goes down .
Apart from programming, what is the best roadmap for hot skills in the market,
1.Cloud Aws
2.Cloud GCP
3.Devops
4.Docker
5.Kubernets .
Can someone please take a time to respond.. thanks all.
https://redd.it/dzgt2d
@r_devops
reddit
Support Guy - Zero programming
Hello everyone, I'm trying very hard to learn programming as I'm getting insults in my workplace. My juniors are good in programming and they...
Untrusted CI: Using Nix to get automatic trusted caching of untrusted builds
Learn how Nix's new post-build hooks feature can automatically sign and upload artifacts to a binary cache in a trusted way.
[https://www.tweag.io/posts/2019-11-21-untrusted-ci.html](https://www.tweag.io/posts/2019-11-21-untrusted-ci.html)
https://redd.it/dzsg57
@r_devops
Learn how Nix's new post-build hooks feature can automatically sign and upload artifacts to a binary cache in a trusted way.
[https://www.tweag.io/posts/2019-11-21-untrusted-ci.html](https://www.tweag.io/posts/2019-11-21-untrusted-ci.html)
https://redd.it/dzsg57
@r_devops
reddit
Untrusted CI: Using Nix to get automatic trusted caching of...
Learn how Nix's new post-build hooks feature can automatically sign and upload artifacts to a binary cache in a trusted...
Blog post: Deploying your First Container with Docker for Windows
Hey guys, Devin Rich just wrote a shiny new blog post you may enjoy on the ATA blog. It's targeted to beginners to Docker that want to get started on Windows.
He worked hard on this one (and I edited it). I think it turned out great because it covers all of the absolute basics someone may need to get started learning Docker on Windows.
I'm curious, for all of you Docker pros, what are some of the most common gotchas you ran into when starting out with Docker? I'd love to make this post better.
https://adamtheautomator.com/docker-for-windows/?utm_source=redditdocker&utm_medium=social&utm_campaign=newblogpostnotifications
https://redd.it/dzr7b5
@r_devops
Hey guys, Devin Rich just wrote a shiny new blog post you may enjoy on the ATA blog. It's targeted to beginners to Docker that want to get started on Windows.
He worked hard on this one (and I edited it). I think it turned out great because it covers all of the absolute basics someone may need to get started learning Docker on Windows.
I'm curious, for all of you Docker pros, what are some of the most common gotchas you ran into when starting out with Docker? I'd love to make this post better.
https://adamtheautomator.com/docker-for-windows/?utm_source=redditdocker&utm_medium=social&utm_campaign=newblogpostnotifications
https://redd.it/dzr7b5
@r_devops
Adam the Automator
Deploying your First Container with Docker for Windows
If you're new to containers and Docker and work primarily on Windows, you're in for a treat. In this article, you're going to learn how to set up your first Docker container on Windows 10 using Docker Desktop for Windows or simply referred to as Docker Desktop…
CI/CD solutions for Kubernetes
I have a Jenkins server that does what I need for various jobs and what not, it produces some docker images as one of the many types of jobs it does. I wanted to have Spinnaker be the CD portion of my CI/CD but I can not for the life of me get it to work at all. Mix between Kops, github for helm charts, and ECR being royal pains which have been a show stopper so far.
​
What other options are good for working with Kubernetes that are not Spinnaker and work well with Jenkins (on an EC2 instance)?
https://redd.it/dzs0p8
@r_devops
I have a Jenkins server that does what I need for various jobs and what not, it produces some docker images as one of the many types of jobs it does. I wanted to have Spinnaker be the CD portion of my CI/CD but I can not for the life of me get it to work at all. Mix between Kops, github for helm charts, and ECR being royal pains which have been a show stopper so far.
​
What other options are good for working with Kubernetes that are not Spinnaker and work well with Jenkins (on an EC2 instance)?
https://redd.it/dzs0p8
@r_devops
reddit
CI/CD solutions for Kubernetes
I have a Jenkins server that does what I need for various jobs and what not, it produces some docker images as one of the many types of jobs it...
Example of a gitlab CI pipeline that deploys to AWS SAM?
Hi, I've started working on my first gitlab CI pipeline (coming from AWS Codepipeline) and am struggling a bit.
My pipeline needs to: Build a docker image and push it to a repository (ECR), compile typescript code and deploy it with AWS SAM, and build
To get started, I attempted to modify this code to work with my own repository; however, I realized after a little while that it does not actually work. The Gitlab user is named "gitlab-examples" so I mistakenly took it to be an official repo, but I don't think that it is.
Does anybody know of a public repo with an example of a working Gitlab CI + AWS Cloudformation/SAM deployment?
https://redd.it/dzvbtr
@r_devops
Hi, I've started working on my first gitlab CI pipeline (coming from AWS Codepipeline) and am struggling a bit.
My pipeline needs to: Build a docker image and push it to a repository (ECR), compile typescript code and deploy it with AWS SAM, and build
To get started, I attempted to modify this code to work with my own repository; however, I realized after a little while that it does not actually work. The Gitlab user is named "gitlab-examples" so I mistakenly took it to be an official repo, but I don't think that it is.
Does anybody know of a public repo with an example of a working Gitlab CI + AWS Cloudformation/SAM deployment?
https://redd.it/dzvbtr
@r_devops
reddit
Example of a gitlab CI pipeline that deploys to AWS SAM?
Hi, I've started working on my first gitlab CI pipeline (coming from AWS Codepipeline) and am struggling a bit. My pipeline needs to: Build a...
Git repository summary on your terminal
Here is a fun little tool, you might enjoy; It doesn't do much other than showing a bunch of infos about your Git Repo along side an Ascii logo of the dominant language. Written fully in Rust, onefetch implements the Kitty and Sixel protocol to render graphics (images) to the screen of the terminal emulator, more info [here](https://github.com/o2sh/onefetch/wiki/image-Backends)
Github: [https://github.com/o2sh/onefetch](https://github.com/o2sh/onefetch)
https://redd.it/dzr9pk
@r_devops
Here is a fun little tool, you might enjoy; It doesn't do much other than showing a bunch of infos about your Git Repo along side an Ascii logo of the dominant language. Written fully in Rust, onefetch implements the Kitty and Sixel protocol to render graphics (images) to the screen of the terminal emulator, more info [here](https://github.com/o2sh/onefetch/wiki/image-Backends)
Github: [https://github.com/o2sh/onefetch](https://github.com/o2sh/onefetch)
https://redd.it/dzr9pk
@r_devops
GitHub
Image Backends
Git repository summary on your terminal. Contribute to o2sh/onefetch development by creating an account on GitHub.
Which tool do you use for your ci/cd pipelines?
I'm trying to investigate what tools other teams are using, at the moment I'm guessing the majority use Jenkins.
https://redd.it/dzie1o
@r_devops
I'm trying to investigate what tools other teams are using, at the moment I'm guessing the majority use Jenkins.
https://redd.it/dzie1o
@r_devops
reddit
Which tool do you use for your ci/cd pipelines?
I'm trying to investigate what tools other teams are using, at the moment I'm guessing the majority use Jenkins.
Making Grafana charts publicly accessible
How can one make Grafana charts publicly accessible? I just installed the Grafana helm chart and by default it's user/password authentication enabled.
Is there a way that I could allow people to just view the charts without authenticating?
https://redd.it/dzgs55
@r_devops
How can one make Grafana charts publicly accessible? I just installed the Grafana helm chart and by default it's user/password authentication enabled.
Is there a way that I could allow people to just view the charts without authenticating?
https://redd.it/dzgs55
@r_devops
reddit
Making Grafana charts publicly accessible
How can one make Grafana charts publicly accessible? I just installed the Grafana helm chart and by default it's user/password authentication...