<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>Spinnaker Architecture on Spinnaker</title>
		<link>https://deploy-preview-637--spinnaker-io.netlify.app/docs/reference/architecture/</link>
		<description>Recent content in Spinnaker Architecture on Spinnaker</description>
		<generator>Hugo</generator>
		<language>en</language>
		
		
		
		
			<atom:link href="https://deploy-preview-637--spinnaker-io.netlify.app/docs/reference/architecture/index.xml" rel="self" type="application/rss+xml" />
			<item>
				<title>Spinnaker Architecture Overview</title>
				<link>https://deploy-preview-637--spinnaker-io.netlify.app/docs/reference/architecture/microservices-overview/</link>
				<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
				<guid>https://deploy-preview-637--spinnaker-io.netlify.app/docs/reference/architecture/microservices-overview/</guid>
				<description>&lt;h2 id=&#34;spinnaker-microservices&#34;&gt;Spinnaker microservices&lt;/h2&gt;&#xA;&lt;p&gt;Spinnaker is composed of a number of independent microservices:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;&#xA;&lt;a href=&#34;https://github.com/spinnaker/spinnaker/tree/main/deck&#34; target=&#34;_blank&#34;&gt;Deck&lt;/a&gt;&#xA; is the browser-based UI.&lt;/p&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;&#xA;&lt;a href=&#34;https://github.com/spinnaker/spinnaker/tree/main/gate&#34; target=&#34;_blank&#34;&gt;Gate&lt;/a&gt;&#xA; is the API gateway.&lt;/p&gt;&#xA;&lt;p&gt;The Spinnaker UI and all api callers communicate with Spinnaker via Gate.&lt;/p&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;&#xA;&lt;a href=&#34;https://github.com/spinnaker/spinnaker/tree/main/orca&#34; target=&#34;_blank&#34;&gt;Orca&lt;/a&gt;&#xA; is the orchestration engine.&#xA;It handles all ad-hoc operations and pipelines.&#xA;Read more on the &#xA;&lt;a href=&#34;https://deploy-preview-637--spinnaker-io.netlify.app/docs/community/contributing/code/developer-guides/service-overviews/orca/&#34;&gt;Orca Service Overview&lt;/a&gt;&#xA;.&lt;/p&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;&#xA;&lt;a href=&#34;https://github.com/spinnaker/spinnaker/tree/main/clouddriver&#34; target=&#34;_blank&#34;&gt;Clouddriver&lt;/a&gt;&#xA; is responsible for all&#xA;mutating calls to the cloud providers and for indexing/caching all deployed&#xA;resources.&lt;/p&gt;&#xA;&lt;/li&gt;&#xA;&lt;li&gt;&#xA;&lt;p&gt;&#xA;&lt;a href=&#34;https://github.com/spinnaker/spinnaker/tree/main/front50&#34; target=&#34;_blank&#34;&gt;Front50&lt;/a&gt;&#xA; is used to persist the&#xA;metadata of applications, pipelines, projects and notifications.&lt;/p&gt;</description>
			</item>
			<item>
				<title>Life of a Bake</title>
				<link>https://deploy-preview-637--spinnaker-io.netlify.app/docs/reference/architecture/loab/</link>
				<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
				<guid>https://deploy-preview-637--spinnaker-io.netlify.app/docs/reference/architecture/loab/</guid>
				<description>&lt;div class=&#34;mermaid&#34;&gt;&#xA;  &#xA;sequenceDiagram&#xA;&#xA;Title: Life of a Bake&#xA;&#xA;participant Igor&#xA;participant Jenkins&#xA;participant ArtifactRepo&#xA;participant Echo&#xA;participant Front50&#xA;participant Orca&#xA;participant Rosco&#xA;participant Packer&#xA;participant Redis&#xA;participant Cloud&#xA;&#xA;Echo-&gt;&gt;Front50: Build cache of pipeline triggers&#xA;&#xA;Jenkins-&gt;&gt;ArtifactRepo: Publish newly-produced deployable asset (e.g. .deb/.rpm/.jar)&#xA;Note right of Jenkins: Archive artifacts&#xA;&#xA;Igor-&gt;&gt;Jenkins: Poll Jenkins for completed builds&#xA;Igor-&gt;&gt;Echo: Publish completed build info to eventing bus&#xA;&#xA;Echo-&gt;&gt;+Orca: Initiate pipeline execution based on matched trigger&#xA;Orca-&gt;&gt;Redis: Persist new execution&#xA;Note right of Orca: Orca uses the artifact details from the trigger to decorate the package name with version information&#xA;Orca-&gt;&gt;-Rosco: Request bake, passing package with exact version to install&#xA;&#xA;Rosco-&gt;&gt;Redis: Persist new bake&#xA;Rosco-&gt;&gt;Packer: Initiate bake job, passing repo address (from config) and package/version&#xA;&#xA;Packer-&gt;&gt;ArtifactRepo: Pull deployable asset from repo&#xA;Packer-&gt;&gt;Cloud: Publish machine image&#xA;&#xA;Loop In background thread&#xA;Rosco-&gt;&gt;Packer: Poll until job completion&#xA;Rosco-&gt;&gt;Redis: Mark bake completed&#xA;end&#xA;&#xA;Loop In worker thread&#xA;Orca-&gt;&gt;Rosco: Poll until task completion&#xA;Rosco-&gt;&gt;Redis: Query bake status&#xA;Orca-&gt;&gt;Redis: Update execution state&#xA;end&#xA;&#xA;&#xA;&lt;/div&gt;</description>
			</item>
			<item>
				<title>Life of a Deployment</title>
				<link>https://deploy-preview-637--spinnaker-io.netlify.app/docs/reference/architecture/load/</link>
				<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
				<guid>https://deploy-preview-637--spinnaker-io.netlify.app/docs/reference/architecture/load/</guid>
				<description>&lt;div class=&#34;mermaid&#34;&gt;&#xA;  &#xA;sequenceDiagram&#xA;&#xA;Title: Life of a deployment&#xA;&#xA;participant Deck&#xA;participant Gate&#xA;participant Orca&#xA;participant Clouddriver&#xA;participant Redis&#xA;participant Cloud&#xA;&#xA;Deck-&gt;&gt;+Gate: Initiate Deploy orchestration&#xA;Gate-&gt;&gt;+Orca: Initiate Deploy orchestration&#xA;Orca-&gt;&gt;Redis: Persist new execution&#xA;Orca--&gt;&gt;-Gate: Reply with orchestration id&#xA;Gate--&gt;&gt;-Deck: Reply with orchestration id&#xA;&#xA;Note right of Orca: In worker thread&#xA;Orca-&gt;&gt;+Clouddriver: Initiate Deploy operation&#xA;Clouddriver-&gt;&gt;Redis: Persist new task&#xA;Clouddriver--&gt;&gt;-Orca: Reply with task id&#xA;&#xA;Clouddriver-xCloud: Mutating calls&#xA;activate Clouddriver&#xA;Clouddriver-&gt;&gt;Redis: Mark task completed&#xA;deactivate Clouddriver&#xA;&#xA;Loop In worker thread&#xA;Orca-&gt;&gt;Clouddriver: Poll until task completion&#xA;Clouddriver-&gt;&gt;Redis: Query task status&#xA;Orca-&gt;&gt;Redis: Update execution state&#xA;end&#xA;&#xA;Loop In worker thread&#xA;Orca-&gt;&gt;Clouddriver: Poll until instances are up&#xA;Clouddriver-&gt;&gt;Redis: Query server group/instance state from cache&#xA;Orca-&gt;&gt;Redis: Mark execution completed&#xA;end&#xA;&#xA;Loop In background thread&#xA;Deck-&gt;&gt;Gate: Poll until orchestration completion&#xA;Gate-&gt;&gt;Orca: Query orchestration status&#xA;Orca-&gt;&gt;Redis: Query execution status&#xA;end&#xA;&#xA;&lt;/div&gt;</description>
			</item>
	</channel>
</rss>
