ТЕМА: Martes por la tarde http://st-loius.nef2.com
Naperville : splunk devops - Kabrinskiy Eduard 5 років 2 місяців тому #31451
|
Kabrinskiy Eduard - Decoding devops - Kabrinskiy Eduard
<h1>Decoding devops</h1> <p>[youtube]</p> Decoding devops <a href="remmont.com">Today's news stories</a> Decoding devops <h1><strong>Workshop on Decoding DevOps</strong></h1> <p style="clear: both"><img src="www.devopsuniversity.org/wp-content/uplo...vops-university1.jpg" /></p> <h3>Learn about the transformative approach to software delivery</h3> <p>DevOps in simplest terms is ?how you build and deploy your software?. It is about the culture that your team members live, the principles that guide your development process, the set of practices you follow to automate and speed up your delivery, the mindset you demonstrate to achieve complete customer satisfaction.</p> <p>DevOps is not a differentiating factor anymore, rather an essential element to compete and survive in the IT industry.</p> <p>Through this webinar, you will be able to enhance your knowledge on DevOps and learn how to deliver software the ?DevOps way?!!</p> <h3>Webinar on Decoding DevOps</h3> <h4>25th April | 05:30AM ? 7:30AM (EST) </h4> <h4>25th April | 03:00PM ? 5:00PM (IST) </h4> <h4>25th April |01:30PM ? 5:00PM (CET) </h4> <h4>25th April |07:00PM ? 9:00PM (ACST) </h4> <h3>Join this Webinar to understand:</h3> <ul> <li>The ?DevOps? concept</li> <li>The evolution of DevOps</li> <li>DevOps in action</li> <li>CICD pipeline ? CI, CD, CIT</li> <li>The key enablers</li> <li>Key aspects/Principles of DevOps</li> <li>DevSecOps / DevChatOps</li> <li>Why is DevOps critical to business?</li> <li>Benefits</li> <li>Impact</li> <li>Is DevOps a panacea for all problems?</li> <li>Challenges</li> <li>Myth busters</li> <li>DevOps job opportunities</li> </ul> <h3>Register for free webinar</h3> <p>We appreciate your efforts and enthusiasm to upskill yourself. We are grateful to you for showing interest in our webinar . <br />Please fill below the Registration Form to receive the webinar details. <br /></p> <p>In essence, DevOps is bringing together your software development team and operations team to work towards a common goal and have a unified vision. The assured benefits of DevOps philosophy are rapid software releases, shorter development cycles, reduced risks, quicker issue resolution, and better productivity.</p> <p>Please join this webinar to ?dissect? DevOps with DevOps University. You will acquire intelligence on the key enablers as well as underlying principles behind the DevOps philosophy. You will also gain insight about the evolution of DevOps, its magical impact on organizations and how you can accelerate your career growth through ?DevOps advantage?.</p> <h2>Decoding devops</h2> <h3>Decoding devops</h3> <p>[youtube]</p> Decoding devops <a href="remmont.com">Current news</a> Decoding devops <h4>Decoding devops</h4> Workshop on Decoding DevOps Learn about the transformative approach to software delivery DevOps in simplest terms is ?how you build and deploy your software?. It is about the culture <h5>Decoding devops</h5> Decoding devops <a href="remmont.com">Decoding devops</a> Decoding devops SOURCE: <h6>Decoding devops</h6> <a href="dev-ops.engineer/">Decoding devops</a> Decoding devops #tags#[replace: -,-Decoding devops] Decoding devops#tags# Eduard Kabrinskiy breaking news |
|
|
Адміністратор заборонив доступ на запис.
|
Newport News : azure devops merge branch - Kabrinskiy Eduard 5 років 2 місяців тому #31565
|
Эдуард Кабринский - Vsts extensions - Eduard Kabrinskiy
<h1>Vsts extensions</h1> <p>[youtube]</p> Vsts extensions <a href="remmont.com">News stories</a> Vsts extensions <h1>Building Azure DevOps (VSTS) Tasks with TypeScript and VS Code</h1> <p>Over the last few years I have fallen in love with Azure DevOps (VSTS) for handling all of my application and backend continuous integration, deployment, and release management. Each of these services offer a task based build and release definition that enable you to easily start automating anything. There are a ton of built in tasks, and a whole marketplace where you can install them into your Azure DevOps (VSTS) project. At some point though, you may need to do something custom that isn't a task that has been built. Don't worry, because there is a task called <strong>Command Line</strong>, which enables you to run any script that you could possibly want. While this is super powerful it also means that these scripts aren't re-usable between applications without copy and pasting them around and don't offer up a friendly user interface since it it just script.This is why Azure DevOps (VSTS) allows anyone to create re-usable tasks that can be shared privately or publicly with the world in the marketplace.</p> <p style="clear: both"><img src="montemagno.com/content/images/2017/12/IQsRzovW.jpg" /></p> <h2>Shared Tasks with TypeScript</h2> <p>Wait, why is James talking about TypeScript? We all know that everything JavaScript annoys him and he loves C# with all of his heart and soul. While you can run any custom command in Azure DevOps (VSTS) if you want to write a shareable task that runs on any platform (such as macOS or Linux), then it must be written in JavaScript or TypeScript that is compiled down to JavaScript.</p> <p style="clear: both"><img src="montemagno.com/content/images/2017/12/download.png" /></p> <p>Don't run away, it really isn't that bad I promise. I tried everything to write tasks in any other language including bash and PowerShell Core, but nope you really need TS/JS for now. Luckily, once you get everything setup inside of VS Code, it is a nice experience. So, let's do it.</p> <h2>Development Setup</h2> <p>To get started you will need a Azure DevOps (VSTS) account, VS Code, the latest version of node, the Azure DevOps (VSTS) CLI, and a scaffolded out structure for your code. The Microsoft Documentation on Adding a Task has this entire structure laid out perfectly, so go do that right now! Then come back and we will pick up from this point.</p> <h3>Multi-Task Structure</h3> <p>The documentation above sets you up to build a single task, which is okay, but a unique ability is to create a bunch of tasks into a shareable task extension. So, before we start crushing some code and npm packages, let's structure our code a bit.</p> <h3>Update vss-extension.json</h3> <p>The vss-extension.json lists out all of the tasks that you want bundled into the extension that is compiled. There are two sections, <strong>files</strong> and <strong>contributions</strong>, which need to be updated with the multiple tasks and paths that we are creating. You can see what my vss-extension.json looks like with multiple tasks on my GitHub.</p> <h2>Development == Start</h2> <p>Now it is finally time to start development yay! Before we do, we need to insure that we have the TypeScript compiler installed. It is as easy as running:</p> <p>There is great documentation over on the VS Code site.</p> <p>Inside of each tak folder we need to create a <strong>tsconfig.json</strong> file that tells TypeScript what the compiler options should be.</p> <p>Here is what mine looks like:</p> <p>Again, there is great documentation over on the VS Code website that goes over all of this.</p> <p>We will create one more file called <strong>package.json</strong> which will have information about our task and what to point to when finished and what dependencies exist:</p> <p>Now we can create our actual TypeScript file that will be run by Azure DevOps (VSTS). Here is what the base looks like:</p> <p>Before we try to build and run this task, we must restore our packages. Down in the terminal window of VS Code we can navigate to our Task folder and run npm commands to install the packages we need.</p> <p style="clear: both"><img src="montemagno.com/content/images/2018/01/NPM-install.PNG" /></p> <h3>Build and Debug!</h3> <p>Now, it is time to compile our TypeScript down into JavaScript and actually debug it.</p> <p>VS Code has some nifty commands built in for TypeScript. The command palette can be brought up with Ctrl + Shift + P or under View:</p> <p style="clear: both"><img src="montemagno.com/content/images/2018/01/Run-Build.PNG" /></p> <p>Then we can find <strong>Tasks: Run Build</strong> which will list all of the TypeScript files that can be compiled:</p> <p style="clear: both"><img src="montemagno.com/content/images/2018/01/Run-Build-2.PNG" /></p> <p>This can be brought up also with a keyboard shortcut of Ctrl + Shift + B.</p> <p>We can select the tsconfig that we want to build and hopefully we get no errors.</p> <p>This compilation will output some nice JavaScript that will be executed under the hood:</p> <p style="clear: both"><img src="montemagno.com/content/images/2018/01/JavaScript.PNG" /></p> <p>VS Code should have generated a launch.json file at the root of the solution. Here is what mine looks like:</p> <p>We can now set a breakpoint and start to debug our task.</p> <p style="clear: both"><img src="montemagno.com/content/images/2018/01/Debugging.PNG" /></p> <p>The final thing to do is to package up our task and ship it to the marketplace for testing. This can be done with a simple command line at the root of the project to first install tfx-cli and then bundle the package:</p> <h2>Learn More</h2> <p>There you have it from scratch to a fully built Azure DevOps (VSTS) tasks ready to be re-used in any project. Be sure to checkout my Azure DevOps (VSTS) tasks that are fully open source on GitHub and browse through the VSTS documentation for building tasks.</p> <h2>Vsts extensions</h2> <h3>Vsts extensions</h3> <p>[youtube]</p> Vsts extensions <a href="remmont.com">News today</a> Vsts extensions <h4>Vsts extensions</h4> Building re-usable tasks for VSTS and TFS are pretty easy once you setup VS Code and TypeScript. In this blog I will walk through how to do it all. <h5>Vsts extensions</h5> Vsts extensions <a href="remmont.com">Vsts extensions</a> Vsts extensions SOURCE: <h6>Vsts extensions</h6> <a href="dev-ops.engineer/">Vsts extensions</a> Vsts extensions #tags#[replace: -,-Vsts extensions] Vsts extensions#tags# Кабринский Эдуард new |
|
|
Адміністратор заборонив доступ на запис.
|
Texas : azure devops audit log - Kabrinskiy Eduard 5 років 2 місяців тому #31576
|
Eduard Kabrinskiy - Vsts client - Кабринский Рдуард
<h1>Vsts client</h1> <p>[youtube]</p> Vsts client <a href="remmont.com">World news</a> Vsts client <h1>Visual Studio Team System (VSTS)</h1> <h2>Definition - What does Visual Studio Team System (VSTS) mean?</h2> <p>Visual Studio Team System (VSTS) is an integrated development environment (IDE) developed as a software product by Microsoft Corp. to facilitate software project creation, development and management. VSTS is composed of four subproducts:<br /></p> <p><ol> <li>Visual Studio, a development environment</li> <li>Visual Studio Test Professional for test data management and test case execution</li> <li>Team Foundation Server, which offers collaboration of source code files and centralized database</li> <li>Visual Studio Lab Management, which provides features to create a virtual environment for software testers</li> </ol> </p> <h2>Techopedia explains Visual Studio Team System (VSTS)</h2> <p>A software development task often consists of several stages and procedures with different people involved in each stage:<br /></p> <p><ol> <li>The business analyst responsible for analyzing the given problem and representing it visually</li> <li>The project manager who allocates budget and resources and frames a schedule for the project development activities</li> <li>The software architect who studies the system and its functions in depth and develops necessary algorithms</li> <li>The developer who writes code based on the algorithms</li> <li>The software test engineer who tests the code to fix bugs and defects</li> <li>The deployment team responsible for delivering the fully operational product to the client</li> </ol> </p> <p>Each of the members needs a different tool to work with. For example, the project manager is only interested in working with tools that provide an insight regarding the budget of the project and is not interested in tools associated with testing. Therefore, a software package is needed that can meet the demands of the people involved in software development. VSTS offers a software package with several sub-packages that incorporate all essential features.</p> <p>The entire functionality of VSTS relies on the core component known as the Team Foundation Server (TFS). It facilitates development collaboration among different teams of people working on the same software project, offers a repository for storing configuration objects, and enables data collection and project tracking. It is the main back-end component of VSTS.</p> <h2>Vsts client</h2> <h3>Vsts client</h3> <p>[youtube]</p> Vsts client <a href="remmont.com">World news today live</a> Vsts client <h4>Vsts client</h4> This definition explains the meaning of Visual Studio Team System and why it matters. <h5>Vsts client</h5> Vsts client <a href="remmont.com">Vsts client</a> Vsts client SOURCE: <h6>Vsts client</h6> <a href="dev-ops.engineer/">Vsts client</a> Vsts client #tags#[replace: -,-Vsts client] Vsts client#tags# Кабринский Эдуард news |
|
|
Адміністратор заборонив доступ на запис.
|
Boulder : ukraine cities 5 років 2 місяців тому #31833
Santa Clarita : ww2 strategy games 5 років 2 місяців тому #31956
Glendale : news russia 5 років 2 місяців тому #31979
Час відкриття сторінки: 0.100 секунд

