<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>Secrets on Spinnaker</title>
		<link>https://deploy-preview-637--spinnaker-io.netlify.app/docs/reference/secrets/</link>
		<description>Recent content in Secrets on Spinnaker</description>
		<generator>Hugo</generator>
		<language>en</language>
		
		
		
		
			<atom:link href="https://deploy-preview-637--spinnaker-io.netlify.app/docs/reference/secrets/index.xml" rel="self" type="application/rss+xml" />
			<item>
				<title>Secrets in GCS</title>
				<link>https://deploy-preview-637--spinnaker-io.netlify.app/docs/reference/secrets/gcs-secrets/</link>
				<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
				<guid>https://deploy-preview-637--spinnaker-io.netlify.app/docs/reference/secrets/gcs-secrets/</guid>
				<description>&lt;p&gt;This example uses a bucket (&lt;code&gt;mybucket&lt;/code&gt;) to store GitHub credentials and a kubeconfig file.&lt;/p&gt;&#xA;&lt;h2 id=&#34;authorization&#34;&gt;Authorization&lt;/h2&gt;&#xA;&lt;p&gt;Since you&amp;rsquo;re storing sensitive information you protect the bucket by restricting access to it. Encryption at rest is &#xA;&lt;a href=&#34;https://cloud.google.com/storage/docs/encryption/default-keys&#34; target=&#34;_blank&#34;&gt;already provided&lt;/a&gt;&#xA; automatically without additional setup.&lt;/p&gt;&#xA;&lt;p&gt;Remember to run Spinnaker services with a service account that allows them to read that content.&lt;/p&gt;&#xA;&lt;h2 id=&#34;storing-secrets&#34;&gt;Storing secrets&lt;/h2&gt;&#xA;&lt;h3 id=&#34;storing-credentials&#34;&gt;Storing credentials&lt;/h3&gt;&#xA;&lt;p&gt;Store your GitHub credentials in &lt;code&gt;mybucket/spinnaker-secrets.yml&lt;/code&gt;:&lt;/p&gt;&#xA;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-text-size-adjust:none;&#34;&gt;&lt;code class=&#34;language-yaml&#34; data-lang=&#34;yaml&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;github&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;:&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#f8f8f8&#34;&gt;  &lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;password&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;:&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;&amp;lt;PASSWORD&amp;gt;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#f8f8f8&#34;&gt;  &lt;/span&gt;&lt;span style=&#34;color:#204a87;font-weight:bold&#34;&gt;token&lt;/span&gt;&lt;span style=&#34;color:#000;font-weight:bold&#34;&gt;:&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8&#34;&gt; &lt;/span&gt;&lt;span style=&#34;color:#000&#34;&gt;&amp;lt;TOKEN&amp;gt;&lt;/span&gt;&lt;span style=&#34;color:#f8f8f8&#34;&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;Note: You could choose to store the password under different keys than &lt;code&gt;github.password&lt;/code&gt; and &lt;code&gt;github.token&lt;/code&gt;. You&amp;rsquo;d just need to &#xA;&lt;a href=&#34;#referencing-secrets&#34;&gt;change how to reference the secret&lt;/a&gt;&#xA;.&lt;/p&gt;</description>
			</item>
			<item>
				<title>Secrets in Google Secret Manager</title>
				<link>https://deploy-preview-637--spinnaker-io.netlify.app/docs/reference/secrets/secret-manager-secrets/</link>
				<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
				<guid>https://deploy-preview-637--spinnaker-io.netlify.app/docs/reference/secrets/secret-manager-secrets/</guid>
				<description>&lt;p&gt;This example uses secrets - &lt;code&gt;mysecret1&lt;/code&gt;, &lt;code&gt;mysecret2&lt;/code&gt; - to store GitHub credentials and secret - &lt;code&gt;mykubeconfig&lt;/code&gt; - to store kubeconfig file.&lt;/p&gt;&#xA;&lt;h2 id=&#34;authorization&#34;&gt;Authorization&lt;/h2&gt;&#xA;&lt;p&gt;Since you&amp;rsquo;re storing sensitive information you protect the secret by restricting access to it&#xA;through &#xA;&lt;a href=&#34;https://cloud.google.com/secret-manager/docs/access-control&#34; target=&#34;_blank&#34;&gt;IAM roles&lt;/a&gt;&#xA;. Encryption at rest&#xA;is &#xA;&lt;a href=&#34;https://cloud.google.com/secret-manager/docs/encryption&#34; target=&#34;_blank&#34;&gt;already provided&lt;/a&gt;&#xA; by default.&lt;/p&gt;&#xA;&lt;p&gt;Remember to run Spinnaker services with a service account that allows them to read that content.&lt;/p&gt;&#xA;&lt;h2 id=&#34;storing-secrets&#34;&gt;Storing secrets&lt;/h2&gt;&#xA;&lt;h3 id=&#34;storing-credentials&#34;&gt;Storing credentials&lt;/h3&gt;&#xA;&lt;p&gt;Store your GitHub token in a secret named &lt;code&gt;mysecret&lt;/code&gt; either as a complete secret or as a value of one of the json keys:&lt;/p&gt;</description>
			</item>
			<item>
				<title>Secrets in S3</title>
				<link>https://deploy-preview-637--spinnaker-io.netlify.app/docs/reference/secrets/s3-secrets/</link>
				<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
				<guid>https://deploy-preview-637--spinnaker-io.netlify.app/docs/reference/secrets/s3-secrets/</guid>
				<description>&lt;p&gt;This document describes how to set up Spinnaker secrets in an encrypted S3 bucket. This example uses a bucket (&#xA;&lt;code&gt;mybucket&lt;/code&gt;) in the &lt;code&gt;us-west-2&lt;/code&gt; region to store GitHub credentials and a kubeconfig file. You can reference the bucket by its&#xA;URL &lt;code&gt;mybucket.us-west-2.amazonaws.com&lt;/code&gt;.&lt;/p&gt;&#xA;&lt;h2 id=&#34;authorization&#34;&gt;Authorization&lt;/h2&gt;&#xA;&lt;p&gt;Since you&amp;rsquo;re storing sensitive information, you protect the bucket by restricting access&#xA;and &#xA;&lt;a href=&#34;https://docs.aws.amazon.com/AmazonS3/latest/user-guide/default-bucket-encryption.html&#34; target=&#34;_blank&#34;&gt;enabling encryption&lt;/a&gt;&#xA;.&lt;/p&gt;&#xA;&lt;p&gt;Remember to run Spinnaker services with IAM roles that allow them to read that content.&lt;/p&gt;</description>
			</item>
	</channel>
</rss>
