DevOps Tools

Containers, clusters and coding: Here’s what’s coming in 2017

Source:- itproportal.com Everyone talks about containers. It became so huge that we think Docker has existed for a long time. The fact is that it has only started. We can observe that by the amount of changes we are seeing. Docker from two years ago is very different than Docker today. Products in its ecosystem are appearing every day and many are disappearing just as quickly. If there is a space we should turn our attention to, that’s containers. At

Read more

Continuous Integration with GitLab

Source:- 126kr.com Recently Team Alfonzó, with help from the Build Team, took the next in adopting a new build infrastructure. We wanted to move away from Jenkins and the TOPdesk DockerHub registry, towards a more distributed infrastructure. Our Implementation Wizard project gave us the opportunity we were looking for to start making use of GitLab’s CI and Registry features. How does GitLab compare to a Jenkins pipeline script? If you have ever written a pipeline script for Jenkins you will

Read more

Docker Tools that Developers will Find Useful

Source:- opensourceforu.com Docker allows IT departments to focus on applications, not virtual machines, as a standard unit of production. Looking at recent trends, there have been many projects created by the Docker community that have advanced the developer experience. This article takes a look at a few Docker tools that may be useful for developers. Docker was introduced to the world with no prior announcement, by Solomon Hykes, founder and CEO of dotCloud at the Python Developers Conference in Santa Clara,

Read more

What will we do when everything is automated?

Source:- opensource.com Recently, I came across a study the caused me to think beyond the day-to-day world of code-slinging in which I live. According to the study Myth and the Reality of Manufacturing in America (PDF), conducted by Center for Business and Economic Research at Ball State University in Indiana: “Almost 88% of job losses in manufacturing in recent years can be attributable to productivity growth, and the long-term changes to manufacturing employment are mostly linked to the productivity of American

Read more

Amazon Web Services Introduces Amazon Chime

Source:- ucstrategies.com Amazon Web Services, Inc. is making its move on the Unified Communications (UC) market, with Amazon Chime. This new UC service provides video and audio meetings, chat, and sharing on desktops, iOS, and Android devices, in an attempt to compete with services like Skype for Business, GoToMeeting, and WebEx. Amazon Chime boasts high quality video, voice, chat, and screen sharing that can be launched with one click. Customers can host and join meetings, and receive calls when the

Read more

Extending AWS CodeBuild with Custom Build Environments

Source:- amazon.com AWS CodeBuild is a fully managed build service that compiles source code, runs tests, and produces software packages that are ready to deploy. CodeBuild provides curated build environments for programming languages and runtimes such as Java, Ruby, Python, Go, Node.js, Android, and Docker. It can be extended through the use of custom build environments to support many more.Build environments are Docker images that include a complete file system with everything required to build and test your project. To

Read more

Agile Data Integration: Continuous Integration with Jenkins and PDI

Source:- 126kr.com Download and Install Jenkins Sample installation using Tomcat: 1 2 3 4 5 6 7 8 9 10 cd ~/apps wget http://mirrors.ukfast.co.uk/sites/ftp.apache.org/tomcat/tomcat-9/v9.0.0.M17/bin/apache-tomcat-9.0.0.M17.zip unzip apache-tomcat-9.0.0.M17.zip rm apache-tomcat-9.0.0.M17.zip chmod 700 apache-tomcat-9.0.0.M17/bin/*.sh cd apache-tomcat-9.0.0.M17/webapps wget http://mirrors.jenkins.io/war-stable/latest/jenkins.war cd ../bin sh ./startup.sh Go to localhost:8080/jenkins and enter the password (which can be found under ~/.jenkins/secrets/initialAdminPassword . After logging in you will be presented with an option to install plugins . At this stage you want to install the Git plugin . Schedule PDI

Read more

Building a Docker Media Server – Docker Networking Basics

Docker containers are distinct entities. It’s almost as if they were individual, single app computers running on the network. To allow them to communicate – with each other as well as other devices and network services – Docker Engine configures and manages network access for your app containers. This network access can be configured in various ways depending on your needs. As you’ll soon discover, when installing and configuring app containers, you’ll need a good understanding of Docker networking basics to ensure those

Read more

Docker Reference Architecture: Docker Datacenter Best Practices and Design Considerations

Source:- docker.com Introduction Docker Datacenter (DDC) is the enterprise container platform from Docker to be used across the entire software supply chain. It is a fully-integrated solution for container-based application development, deployment, and management. With integrated end-to-end security, DDC enables application portability by abstracting your infrastructure so that applications can move seamlessly from development to production. What You Will Learn This reference architecture describes a standard, production-grade, Docker Datacenter deployment. It also details the components of DDC, how they work,

Read more

Docker’s tops for devops, AWS is the cloud king

Source:- infoworld.com Docker is the king of devops tools, hybrid cloud is beating public-only and private-only clouds, and Microsoft Azure is making sizable headway in public cloud. Those are some of the key insights from this year’s edition of SaaS provider RightScale’s State of the Cloud report, which is derived from a survey of more than 1,000 IT pros around the world. Docker keeps climbing — and here comes Kubernetes If there’s one devops tool that’s out in front with

Read more

Automated Test Environments for DevOps

Source:- capgemini.com 1 Test Environments Management: Key Challenges A testing environment is a setup of software and hardware in which the testing team tests a new software build. A test environment consists of pre-production or staging environments, and is generally a downgraded version of a production environment to help uncover pre-production defects. Building and maintaining a test environment is important. Often, dedicated test environments are maintained at various stages like developer test, dedicated test, integration test, and pre-production or business

Read more

Serverless Computing: AWS vs. Azure

Source:- datamation.com Recently, a new kind of cloud computing has been getting more attention from the media and enterprise customers. Serverless computing, also known as function as a service (FaaS), allows developers to run code in the cloud without worrying about infrastructure. They simply upload their code, and the service bills them for the computing resources used to execute their code. Some analysts believe that serverless could be a big trend in 2017 and beyond. As enterprises embrace DevOps philosophies,

Read more

7 Spices of ContinuousDelivery Pipeline

Source:- sys-con.com A Continuous Delivery pipeline as part of an Agile transformation is like spices in a meal. Without them, the food is bland and worthless. On the other hand, the right blend of spices will leave you craving more, stimulating your senses and energizing you. But as any good cook will tell you, it can be a bit difficult to find the exact right blend of spices for a specific dish. Salt and pepper are usually basic requirements, but

Read more

Google Launches Public Beta of Managed Database Service Cloud Spanner

Source:- talkincloud.com Google has launched the public beta of its relational database service Cloud Spanner on Tuesday to help its cloud customers maintain consistent databases between data centers, according to a blog post on Tuesday. Cloud Spanner will be available on Google Cloud Platform, with cost calculated by compute node-hours, storage consumption, and external network access. Cloud Spanner joins other Google Cloud database services Cloud SQL, Cloud Datastore and Cloud Bigtable. “When building cloud applications, database administrators and developers have

Read more

SQL Server Database Continuous Integration (CI) Best Practices And How To Implement Them – Testing, Processing And Automation

Source:- glassgraden.com Test databases should be processed with unit tests In many shops code is unit tested at the point of commit. For databases, I prefer running all unit tests at once and in sequence against a QA database, vs development, as part of a Test step, in my continuous integration workflow pipeline. Yes, issues would be caught later than at check-in, but continuous integration largely solves this with frequent iterations, including at a commit itself. So the difference between

Read more

How to decrease your Gradle build time by 65%?

Source:- kevalpatel2106.wordpress.com Gradle is very powerful build system. It handles the very complex process of building .dx files from java source code, merging all the resources and assets into the application package (.apk) and signing the application. But gradle isn’t perfect. It is comparatively slower than other build systems out there. Why should you care about build time of your project? For a long time, I was OKAY with my build timings. I thought I can live with this. I used to do

Read more

Introducing Docker Datacenter on 1.13 with Secrets, Security Scanning, Content Cache and more

Source:- docker.com It’s another exciting day with a new release of Docker Datacenter (DDC) on 1.13. This release includes loads of new features around app services, security, image distribution and usability. Let’s dig into some of the new features: Integrated Secrets Management This release of Docker Datacenter includes integrated support for secrets management from development all the way to production. This feature allows users to store confidential data (e.g. passwords, certificates) securely on the cluster and inject these secrets to

Read more

Continuous Deployment with Google Container Engine and Kubernetes

Source:- semaphoreci.com Introduction This tutorial will show you how to deploy a sample microservices application to Kubernetes and set up continuous deployment using SemaphoreCI. It includes a crash introduction to Kubernetes, Google Container Engine, and building an automated deploy process. Kubernetes, or “k8s” for short, is an orchestration tool for container native applications. Note that Kubernetes is about containers, and not only Docker containers. This tutorial uses Docker because it’s the current industry standard. Kubernetes is a complex distributed system.

Read more

DevOps on AWS is a complex relationship

Source:- techtarget.com It’s important to have a fully stocked toolbox before deploying DevOps on AWS. Automation and monitoring tools, both from AWS and third parties, need to be in tune for deployment and operations to run smoothly and efficiently. AWS provides tools that help IT teams submit, manage and deploy code — pushing applications and features into production faster. But the DevOps transition is not always easy, and errors cost time and money. Successfully deploying DevOps on AWS requires IT

Read more

Docker Introduces Secrets Management

Source:- crn.com Docker’s latest update helps enterprise customers protect their secrets. An update released Thursday for Docker Datacenter, the container-tech pioneer’s commercial offering, implements a container-native framework for controlling access to sensitive information like API keys, encryption keys and passwords, along with a security scanning feature that can detect vulnerabilities and bugs. The new feature for managing access-control secrets, architected to facilitate large container deployments, can deliver those protected pieces of information to specific, authorized containers in a cluster. Secrets

Read more
1 9 10 11 12 13