diff --git a/chart/flux/README.md b/chart/flux/README.md index 7ddddc88c..912a6f459 100755 --- a/chart/flux/README.md +++ b/chart/flux/README.md @@ -7,7 +7,7 @@ configuration based on that (and a configurable policy). ## Introduction -This chart bootstraps a [Flux](/~https://github.com/weaveworks/flux) deployment on +This chart bootstraps a [Flux](/~https://github.com/fluxcd/flux) deployment on a [Kubernetes](http://kubernetes.io) cluster using the [Helm](https://helm.sh) package manager. ## Prerequisites @@ -22,7 +22,7 @@ This means fluxd can fail to apply changes to HelmRelease resources. ### Helm Tiller should be running in the cluster, though -[helm-operator](../../docs/helm-operator/references/operator.md) will wait +[helm-operator](/~https://github.com/fluxcd/helm-operator) will wait until it can find one. # Git repo @@ -32,12 +32,12 @@ until it can find one. - Custom Resource namespace reflects where the release should be done. Both the Helm release and its corresponding Custom Resource will live in this namespace. - - Example of a test repo: /~https://github.com/weaveworks/flux-get-started + - Example of a test repo: /~https://github.com/fluxcd/flux-get-started ## Installation We put together a simple [Get Started -guide](../../docs/tutorials/get-started-helm.md) which takes about 5-10 minutes to follow. +tutorial](https://docs.fluxcd.io/en/latest/tutorials/get-started-helm.html) which takes about 5-10 minutes to follow. You will have a fully working Flux installation deploying workloads to your cluster. ## Installing Flux using Helm @@ -52,11 +52,11 @@ helm repo add fluxcd https://charts.fluxcd.io #### To install the chart with the release name `flux` -Replace `weaveworks/flux-get-started` with your own git repository and run helm install: +Replace `fluxcd/flux-get-started` with your own git repository and run helm install: ```sh $ helm install --name flux \ ---set git.url=git@github.com:weaveworks/flux-get-started \ +--set git.url=git@github.com:fluxcd/flux-get-started \ --namespace flux \ fluxcd/flux ``` @@ -65,7 +65,7 @@ fluxcd/flux ```sh helm install --name flux \ ---set git.url=git@github.com:weaveworks/flux-get-started \ +--set git.url=git@github.com:fluxcd/flux-get-started \ --set token=YOUR_WEAVE_CLOUD_SERVICE_TOKEN \ --namespace flux \ fluxcd/flux @@ -76,14 +76,14 @@ fluxcd/flux Apply the Helm Release CRD: ```sh -kubectl apply -f https://raw.githubusercontent.com/weaveworks/flux/master/deploy-helm/flux-helm-release-crd.yaml +kubectl apply -f https://raw.githubusercontent.com/fluxcd/flux/helm-0.10.1/deploy-helm/flux-helm-release-crd.yaml ``` Install Flux with Helm: ```sh $ helm install --name flux \ ---set git.url=git@github.com:weaveworks/flux-get-started \ +--set git.url=git@github.com:fluxcd/flux-get-started \ --set helmOperator.create=true \ --set helmOperator.createCRD=false \ --namespace flux \ @@ -154,7 +154,7 @@ The [configuration](#configuration) section lists all the parameters that can be #### Setup Git deploy At startup Flux generates a SSH key and logs the public key. -Find the SSH public key by installing [fluxctl](../../docs/references/fluxctl.md) and +Find the SSH public key by installing [fluxctl](https://docs.fluxcd.io/en/latest/references/fluxctl.html) and running: ```sh diff --git a/chart/flux/templates/NOTES.txt b/chart/flux/templates/NOTES.txt index 1626bf019..750e9a6f2 100644 --- a/chart/flux/templates/NOTES.txt +++ b/chart/flux/templates/NOTES.txt @@ -3,7 +3,7 @@ Get the Git deploy key by either (a) running kubectl -n {{ .Release.Namespace }} logs deployment/{{ .Release.Name }} | grep identity.pub | cut -d '"' -f2 or by (b) installing fluxctl through -/~https://github.com/weaveworks/flux/blob/master/docs/references/fluxctl.md#installing-fluxctl +https://docs.fluxcd.io/en/latest/references/fluxctl.html#installing-fluxctl and running: fluxctl identity diff --git a/daemon/errors.go b/daemon/errors.go index 384c585ed..c0f48b726 100644 --- a/daemon/errors.go +++ b/daemon/errors.go @@ -28,14 +28,14 @@ giving this error: Check that any files mentioned are well-formed, and resources are not defined more than once. It's also worth reviewing - /~https://github.com/weaveworks/flux/blob/master/docs/requirements.md + https://docs.fluxcd.io/en/latest/requirements.html to make sure you're not running into any corner cases. If you think your files are all OK and you are still getting this message, please log an issue at - /~https://github.com/weaveworks/flux/issues + /~https://github.com/fluxcd/flux/issues and include the problematic file, if possible. `, diff --git a/deploy/flux-deployment.yaml b/deploy/flux-deployment.yaml index 1eda433b6..c25ca142b 100644 --- a/deploy/flux-deployment.yaml +++ b/deploy/flux-deployment.yaml @@ -35,7 +35,7 @@ spec: # file, which you will need to do if you host your own git # repo rather than using github or the like. You'll also need to # mount it into the container, below. See - # /~https://github.com/weaveworks/flux/blob/master/docs//guides/use-private-git-host.md + # https://docs.fluxcd.io/en/latest/guides/use-private-git-host.html # - name: ssh-config # configMap: # name: flux-ssh-config diff --git a/docs/references/fluxyaml-config-files.md b/docs/references/fluxyaml-config-files.md index 775511876..da53eb915 100644 --- a/docs/references/fluxyaml-config-files.md +++ b/docs/references/fluxyaml-config-files.md @@ -26,7 +26,7 @@ Flux performs two types of actions on raw manifest files from the Git repository 1. Read manifest files when performing a sync operation (i.e making sure that the status of the cluster reflects what's in the manifest files, adjusting it if necessary) -2. Update the manifest files of [workload](/~https://github.com/fluxcd/flux/blob/master/docs/using/fluxctl.md#what-is-a-workload). +2. Update the manifest files of [workload](fluxctl.html#workloads). Specifically, flux can update: * container images, when releasing a new image version. A release can happen manually or automatically, when a new container image is pushed to a repository. diff --git a/git/errors.go b/git/errors.go index b55fc4bcd..ca5095971 100644 --- a/git/errors.go +++ b/git/errors.go @@ -16,7 +16,7 @@ We need to clone a git repo to proceed, and you haven't supplied one. Please upload a config file, including a git repository URL, as described in - /~https://github.com/weaveworks/flux/blob/master/docs/references/fluxctl.md + https://docs.fluxcd.io/en/latest/references/fluxctl.html `, } diff --git a/install/generated_templates.gogen.go b/install/generated_templates.gogen.go index 13f54e92b..78bbbef7f 100644 --- a/install/generated_templates.gogen.go +++ b/install/generated_templates.gogen.go @@ -19,39 +19,39 @@ var templates = func() http.FileSystem { fs := vfsgen۰FS{ "/": &vfsgen۰DirInfo{ name: "/", - modTime: time.Date(2019, 8, 13, 11, 56, 2, 293417281, time.UTC), + modTime: time.Date(2019, 8, 15, 15, 27, 5, 612581097, time.UTC), }, "/flux-account.yaml.tmpl": &vfsgen۰CompressedFileInfo{ name: "flux-account.yaml.tmpl", - modTime: time.Date(2019, 8, 8, 13, 51, 12, 390915853, time.UTC), + modTime: time.Date(2019, 8, 12, 11, 23, 23, 262609384, time.UTC), uncompressedSize: 836, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x92\x4b\xaf\xd3\x30\x10\x85\xf7\xfe\x15\x47\xba\x8b\x0b\xe8\x26\xa8\x3b\x94\x5d\xdb\x05\x0b\x10\x8b\xf0\xd8\x20\x16\x63\x7b\x42\x4d\x5d\x3b\xf2\x23\x3c\xa2\xfc\x77\x94\xa4\x95\x9a\xb6\x20\x55\xba\x3b\x7b\x7c\xc6\x73\xe6\xe8\x2b\x8a\x42\x3c\xe0\xd3\x8e\x11\x39\x74\x46\x31\x48\x29\x9f\x5d\x7a\x82\xb2\x39\x26\x0e\x08\xde\x72\x7c\x02\x39\xbd\x28\x41\x1a\xa7\x8d\xfb\x0e\x0a\x2c\x1e\xe0\x9d\xfd\x0d\xc7\xac\x59\xa3\xf1\x01\xef\xb2\xe4\xe0\x38\x71\xc4\x4f\x93\x76\x53\x4b\x21\x29\xb2\x1e\x27\x70\x8c\x50\xde\xa5\xe0\x2d\x5e\xd4\x9b\xf5\xf6\x65\x29\xa8\x35\x5f\x38\x44\xe3\x5d\x85\x6e\x25\xf6\xc6\xe9\x0a\x1f\x67\x57\xeb\xd9\x94\x38\x70\x22\x4d\x89\x2a\x01\x58\x92\x6c\xe3\x78\x02\x1c\x1d\xb8\x42\x63\xf3\x2f\x71\x7e\xe9\x7b\x98\x06\xe5\x07\x3a\x70\x6c\x49\x31\x86\xe1\xf8\x3e\x5d\x2b\xf4\xfd\xf2\xb5\xef\xc1\x4e\x0f\x83\x18\x73\x39\x37\x14\x24\xa9\x92\x72\xda\xf9\x60\xfe\x50\x32\xde\x95\xfb\x37\xb1\x34\xfe\x75\xb7\x92\x9c\xe8\xe4\x77\x3b\x27\x54\x7b\xcb\xf7\x9a\x15\x21\x5b\x9e\x24\x05\xa8\x35\x6f\x83\xcf\x6d\xac\xf0\xf5\xf1\xd5\xe3\xb7\xa9\x2f\x70\xf4\x39\x28\x5e\x14\x3b\x0e\xf2\xac\x50\xc0\x79\x57\x1f\x85\x9f\xeb\xf7\xff\xd6\x3e\xc3\x86\x9b\x99\x80\xfb\x17\xf5\x96\x6b\x6e\x46\xd1\x69\xd1\xff\xcc\x17\xc0\x75\xb6\x8b\xff\x62\x96\x3f\x58\xa5\x63\x76\x37\xc1\xb9\xb2\x73\x89\xc1\x25\x27\xb7\xc8\xb0\x71\x3c\x69\x6e\x28\xdb\x34\xa3\x32\x12\xf5\x37\x00\x00\xff\xff\xfd\x7f\x67\x6a\x44\x03\x00\x00"), }, "/flux-deployment.yaml.tmpl": &vfsgen۰CompressedFileInfo{ name: "flux-deployment.yaml.tmpl", - modTime: time.Date(2019, 8, 13, 11, 56, 2, 289958113, time.UTC), - uncompressedSize: 6229, + modTime: time.Date(2019, 8, 15, 15, 27, 5, 612581097, time.UTC), + uncompressedSize: 6211, - compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\x58\x5f\x6f\x1b\x37\x12\x7f\xf7\xa7\x18\x28\x0f\x69\x00\x69\x65\xd5\x6d\x71\xd8\x9e\x0b\xa4\x49\xe3\xcb\xa5\x71\x8c\xf8\x72\x87\x7b\xba\x52\xdc\x91\x96\x10\x97\xdc\xe3\x90\x52\x05\xa3\xdf\xfd\x30\xe4\xfe\xe1\x5a\x72\x52\xe4\xed\xf2\x10\xdb\xdc\xe1\xfc\x25\x7f\xf3\x1b\x2e\x16\x8b\x0b\xd1\xaa\x7f\xa2\x23\x65\x4d\x09\xa2\x6d\x69\xb9\x5f\x5d\xec\x94\xa9\x4a\x78\x8d\xad\xb6\xc7\x06\x8d\xbf\x68\xd0\x8b\x4a\x78\x51\x5e\x00\x18\xd1\x60\x09\x1b\x1d\x7e\x7f\x78\x00\xb5\x81\xe2\x56\x34\x48\xad\x90\x08\x7f\xfc\xd1\x7d\x8f\x7f\x96\xf0\xf0\x30\xfd\xfa\xf0\x00\x68\x2a\x16\xa3\x16\x25\x2b\x73\xd8\x6a\x25\x05\x95\xb0\xba\x00\x20\xd4\x28\xbd\x75\xfc\x05\xa0\x11\x5e\xd6\xbf\x8a\x35\x6a\x4a\x0b\xb9\x6d\x96\xf6\x4e\x78\xdc\x1e\xd3\x47\x7f\x6c\xb1\x84\x8f\x28\x1d\x0a\x8f\x17\x00\x1e\x9b\x56\x0b\x8f\x9d\xb2\x2c\x02\xfe\x27\x8c\xb1\x5e\x78\x65\xcd\xa0\x1c\xa0\x75\xb6\x41\x5f\x63\xa0\x42\xd9\x65\x6b\x9d\x2f\x61\x76\x75\x79\xb5\x9a\xc1\x33\xf0\xa8\x75\x26\x01\xde\x02\x49\x27\x5a\x84\x65\x83\xde\x29\x49\x1c\x5c\x6b\x95\xf1\xcf\x09\x78\x73\xd1\x29\xd6\x93\x18\x1e\x45\x01\xd0\xe7\x22\xfe\x8e\x6e\xaf\x24\xbe\x94\xd2\x06\xe3\x6f\xa7\x82\x00\x7b\xab\x43\x83\x83\xaa\x45\xa7\x6a\xab\xfc\x62\x87\xc7\xc1\x00\x71\x16\xfc\x68\xb0\x5f\x19\xf5\x2d\x78\x4b\x15\x0b\x9c\x49\x55\xb8\x11\x41\xfb\xf7\xb6\xc2\x12\x2e\xbf\xbb\xbc\x84\x67\x70\xa8\xd1\x40\xc3\xde\x60\x05\x0e\x45\xb5\xb0\x46\x1f\xe7\x70\x40\x38\x58\xf3\xdc\xc3\x1a\x41\xac\x35\x72\x3e\x64\xdd\xd8\xea\xa2\x53\xf8\x0c\xfe\x51\x2b\x02\x45\x20\xc0\x37\xed\x86\x20\x10\x56\xb0\xb1\x0e\xb6\x68\xd0\x09\xaf\xcc\x16\xee\xef\xff\x06\x3b\x3c\x52\x01\x6f\x0d\xbc\xfb\x0b\xc1\x4f\xd7\xb0\x2a\x56\x97\xf3\x41\x4b\x6f\x3b\x85\x40\x20\x1c\xe6\x7e\x90\x65\x57\x0c\x62\x05\x02\x08\x5b\xc1\x87\xa2\x4b\x14\x1c\x70\x50\x23\x85\x81\x83\x53\x9e\x1d\x2d\xce\xe7\x6f\x8b\x66\x48\x06\x36\xad\x3f\xbe\x56\x2e\x4f\x62\x83\x95\x0a\x4d\x09\xef\xb1\xb1\xee\x98\xc7\x89\xb0\xb1\x5a\xdb\x03\x47\xd4\x99\x56\x14\x43\x0d\xc4\x6b\x02\x64\x20\x6f\x1b\xc5\x19\xd8\x19\x7b\x30\xff\xa9\x2d\x79\x1a\x54\x6c\x94\xc6\x39\x1c\x6a\x25\x6b\x38\xda\x00\x07\xa5\x75\x0a\xca\x5b\xa8\x2c\xdf\x33\x5e\xe6\x4d\xfc\x8b\x03\x7b\x30\xec\xf6\xa0\xc0\x61\x6b\xc1\x09\x5f\xa3\x03\x5f\x0b\xd3\x19\xde\x2a\x5f\x87\x35\x58\x5e\x44\xd0\x6a\x87\x05\xfc\xdb\x86\xe7\x5a\x83\xd0\x64\x7b\x13\xd3\x64\x83\xf2\xa0\x8c\xb7\x71\x8f\xb4\xc6\x0b\x65\xd0\xcd\x61\x8d\xda\x1e\x0a\xb8\xc7\x31\xab\xb5\xf7\x2d\x95\xcb\x65\xb2\x53\x48\xdb\x2c\x0f\x28\xf6\x78\xb0\x6e\x47\x4b\x3e\x69\xcb\xb5\xb6\xeb\x65\x23\xc8\xa3\x5b\x56\x56\xd2\x72\xb9\x0d\xaa\x42\x5a\x06\xc2\x45\xeb\xd4\x5e\x78\x8c\xc7\x91\x83\x2b\x9a\x6a\xd0\xdd\x57\x87\xa8\x5e\x48\x6b\x36\x6a\x3b\x7c\x02\x48\x0b\xef\x45\x5b\x66\x8b\xf9\xd5\x5a\x64\xdb\xbe\xb6\x52\xc5\x2e\xac\x71\x99\x94\x8c\x07\xf2\x8b\x55\x3a\x28\xaa\x79\xa5\x16\x7b\x04\x01\x95\xda\x6c\xd0\x31\x8c\xf6\x1a\xba\x7b\x36\x42\x65\x2c\x4a\x52\x97\x97\x85\xe1\x66\xaf\x2a\xec\x0b\xb1\x51\xdb\x46\xb4\xa3\x23\xca\xd7\x20\x0c\xa0\xf1\xee\x18\x63\xf8\x2d\x09\xfd\x36\x07\x61\x2a\x08\x46\xda\x86\xf1\x3b\xee\x4f\xd1\xbe\x8f\x05\x16\x66\x4c\x33\x9a\x7d\xd4\xa0\x90\xba\x0a\x9f\x54\x80\xd3\xf0\x15\x15\xc8\xb6\x7d\xb1\x02\x11\x1b\xbc\x05\xd5\x30\x72\xc2\xcd\xdd\x4d\x84\x05\xf8\x86\xc3\x22\xb5\x35\xca\x8c\xc6\x39\xb8\x3d\x3a\xb5\x51\x32\x42\x38\xb4\xc1\xb5\x96\x90\x5e\xfc\x89\x44\x0e\x5a\x12\xa0\xa4\x2c\x72\x82\xd8\xde\x9f\x48\x1c\x08\xb7\x1d\x2f\xee\x13\x19\xdb\xb6\x5b\x46\x14\xca\x52\x33\x05\xe5\x67\x4f\xc0\xf2\xe9\xbe\x33\xb0\xdc\xa7\x73\xb8\x9b\x27\x1d\x21\xeb\x19\x5d\xd6\x1d\x46\xe4\x34\x16\x66\x25\xb7\x45\xf2\x33\x50\x8d\xd8\x62\x3a\xfd\xbc\xa1\x80\x37\xca\x54\x31\xe6\x86\x81\xc6\xa1\x1c\x4f\x6d\x02\x19\x8d\x82\x90\xe1\x24\x6e\xe5\x22\x30\x73\x00\xe1\x07\x24\x60\x18\xa8\xac\xdc\xa1\x8b\x68\xe0\x4e\xf0\xc0\x8b\x21\x7d\x7d\x2d\x99\x05\x30\x43\x60\xcb\x5e\x6c\x81\xbd\x2d\x06\x99\x68\xaa\x84\x4e\xa9\xb2\x51\x8d\xac\xe2\x8f\x72\x55\xac\xae\x8a\xab\xa9\xec\x5d\xd0\xfa\xce\x6a\x25\x8f\x25\xbc\xdd\xdc\x5a\x7f\xe7\x90\xf2\x48\x1c\x92\x0d\x4e\x22\xe5\xe8\xee\xf0\xbf\x01\xc9\x4f\xd6\x00\x64\x1b\x4a\xf8\xfe\xb2\x99\x2c\x36\xb1\x01\x94\xf0\xc3\x77\xef\xd5\x48\x1e\xac\xcb\x37\x2f\xc6\xea\xdc\x45\x22\x71\x75\x79\xc5\xfd\x54\x99\x8d\x75\x4d\x3c\xb6\x42\x0f\xd2\x5a\xed\xd1\x20\xd1\x9d\xb3\x6b\xcc\x3d\xe0\xb4\xde\x4c\x7b\x79\x32\x95\x14\x4e\x97\x85\xaf\x4b\x58\x8a\x56\xa5\x4c\xef\x7f\x58\xaa\x0a\x8d\x57\xfe\x58\xb4\x61\x9d\xc9\x2a\xa3\xbc\x12\xfa\x35\x6a\x71\xbc\xe7\x3b\x5a\x51\x09\xdf\x67\x02\x5e\x35\x68\x83\x3f\xf3\x8d\x5b\xaf\xfa\xff\x70\x35\xbb\xb8\x93\xc2\x9c\x27\x4d\x90\x9a\xdf\x5d\xf2\x0c\xbd\x8c\x9e\x55\x4b\xa2\x9a\xd9\x9f\x4d\x7c\x14\xb4\xed\x30\x67\xcb\x25\x03\x65\xd2\x99\x7b\x4e\x69\x0f\x51\xbd\x9c\x40\x65\x9f\xb3\x0f\x46\x1f\x4b\xf0\x2e\x20\x6b\x63\x66\x14\x51\x6a\xdd\x81\x3b\x5f\xab\x16\xdd\xc6\x3a\x89\xac\x34\x51\x21\x66\x42\x4f\x39\x9e\xb3\x95\xa9\xef\x7b\xe1\x3a\xdf\x93\xd8\xd7\xb9\x9f\xdd\xd1\xb7\x46\xea\x10\xd1\x93\x09\x5d\x6a\x72\x3d\xb2\x26\xc6\xf0\x05\x82\xd3\x53\x9c\x1f\x79\xeb\x23\xf2\x31\x20\x2c\x54\x28\xb5\x70\x4c\xe4\xd6\x76\x9f\x01\xc0\x67\xa8\x40\x82\xc8\x3c\x78\x67\xad\x5f\x16\x44\xf5\x93\x01\x08\x33\xb1\x3a\x1b\xdb\xd4\x2c\x59\x9e\xf7\x22\x99\x06\x34\x7b\xe5\xac\x89\x4d\x21\xf5\xdb\xd9\xbb\x4f\x3f\xff\xf2\xea\xc3\xed\x9b\xb7\x37\xb3\xd4\x06\xe6\x9c\x0f\xbb\x47\xe7\xa6\x3d\x3b\x53\x13\xdb\xdc\xfa\x98\x3a\xaa\xd7\xe7\x62\x3c\x69\xb6\xa7\x31\x8e\x87\x93\x85\x9f\x0c\x94\xfb\x1e\x8f\x23\xbd\x35\x86\xe9\x8c\x8e\x74\xde\xc5\x9a\x64\x2a\x1e\x93\x9a\xbc\xe8\x91\xd1\xf4\x84\x5c\x18\x10\xda\xa3\x33\x4c\xb8\x4f\x3c\xde\x38\xdb\xf0\xb1\xe8\x59\xcb\x1c\x04\xf1\x71\xeb\x3a\x2b\xa7\x41\x5b\xb9\xa3\xd3\x62\xa3\xd9\x97\x67\xf2\x32\xa6\x7b\x92\x97\xbd\xd0\x01\x4f\x72\xf2\xa5\x43\xfc\xf8\x0c\xf4\x7d\xf7\x33\x27\x80\xdb\xfe\xb4\xdd\x7f\xa6\xe1\x3f\x71\x2e\x59\x2a\x31\x9c\x89\xdc\x14\x1f\x46\xa7\xd9\x64\x39\x89\x21\x95\x21\x0d\x6e\x58\x71\x23\x92\x42\xd6\x58\x71\x66\xf3\xd2\x0e\xcc\x92\x8b\xc8\x69\x99\x67\x5a\xac\xeb\xa8\x63\xb6\xa1\x1b\x3c\xe3\xc6\x79\x34\xc2\x03\x13\x85\xb6\xd5\x47\x4e\x04\xe5\xa9\x18\x09\x9c\x3f\x58\xf6\x32\x70\x49\xe3\x81\x8b\x53\x72\xac\x03\xd4\xf6\x10\x87\x42\x6b\x0c\x4a\x1f\xc9\x9d\x9f\xa6\x6e\xb1\x18\x02\x88\xec\x9f\x8d\x5f\x0f\x4b\x45\xc7\x7b\x0a\xda\xcb\x42\xea\xc0\x13\x44\xc1\xf8\xa5\xf3\x94\x7c\xa2\x74\xd5\xc6\x54\xbc\x4a\xa2\x6f\xef\x26\x41\xf1\xad\x23\xf4\x71\xe8\x9c\x16\x76\xf4\xa1\x97\xe7\xd1\xde\x3b\x96\x8c\x63\x60\x86\xc0\xb9\xc7\x9d\xf4\xf5\xc5\x84\x68\x29\x82\x26\x50\x1c\x8b\x63\xf6\x14\x56\xe9\x34\xad\x23\xae\x47\x8a\x13\xa7\xe1\x6f\xfa\x11\xf3\x45\xee\x4b\x7f\xb7\xd2\x29\x64\x66\x96\x0d\xc5\x13\x47\x18\x0b\x13\xbe\x2f\x2a\xe5\xae\x4f\x50\x3f\x77\xeb\x63\x46\xb0\xc6\xe2\x7d\xfa\xf8\x6b\x9a\xda\x85\xd9\xa6\x6f\x37\xca\xc7\x49\x92\x94\xb7\xee\x38\xa0\xd5\x1b\x26\x87\x13\xe3\xdc\x83\x82\xd3\xd7\x0f\x0f\x50\xdc\x28\xcf\x9a\xe2\xe3\xcf\x54\x62\xed\x84\x91\x75\x2f\xf4\x73\xfc\x2b\x3d\x03\xa9\x4d\x5c\xe2\xbb\x41\xe7\x76\x32\x3f\xe0\x7d\xf7\xb1\x0c\xf4\x77\xab\x4c\xb6\x61\x36\x9f\x75\xaf\x49\x9a\x30\xdf\xce\xf4\xea\xb4\x55\x1d\x84\x89\xc7\xcf\x21\x57\x55\x26\x56\xdf\x08\xa3\x36\xcc\xf7\xf8\x80\x92\xaa\xd0\xa5\x58\x1f\x31\xe7\x38\x05\x5b\x42\x08\xa6\x42\xf7\x28\x81\x0e\xb5\xf0\x6a\x8f\x91\xce\x50\x5f\xde\xed\x24\x89\x8f\x0e\xfc\x10\x1c\x85\x75\xa5\xdc\x6a\x9e\x7e\x7e\x3b\x3c\x8d\x8d\xc9\x89\x4f\x5f\xe7\x92\x13\xdf\x93\xfa\xac\xf6\x52\x67\x14\x7c\x22\x74\xe7\xf6\x07\x42\x37\x54\x8e\x65\xe0\xfc\xfe\x5f\x1a\xa1\xce\x3a\x80\xfc\xa1\xd7\xd0\x4b\x8d\x8f\x7b\x67\x41\x17\xf9\x9e\x1e\x2c\x27\x14\x4d\x7c\x30\xe2\x3c\x71\x37\x50\xfe\xd1\x80\x97\xe7\xaa\xc3\xd5\x0e\x35\xaf\x3f\x03\xa3\xfd\x8e\x4e\x17\xef\xba\xfe\xeb\x0e\x8f\xa0\xaa\x9f\x06\xb1\xcf\xb4\xca\xcc\x2b\x56\x21\x7c\x70\x38\x99\x32\xcf\xd8\x8a\x9f\x8f\x8b\x41\x9e\x9e\x8e\xdd\xe0\xef\xbe\x4f\x40\x06\x89\xc2\xc0\x2c\xb4\xe4\x1d\x8a\x66\xd6\x03\x56\xa6\xe4\x1b\x2c\xb6\xc5\x1c\xfe\xc5\x43\x14\xbc\xd2\x36\x54\x2f\x8a\x38\x44\x7b\xbb\x63\xfe\x46\xd0\x0a\xe7\x95\x0c\x5a\x38\xe8\x9e\x6c\x3a\x2d\x8f\xb1\xb6\xb3\x7a\x7d\x20\x9e\xd3\x24\xeb\x2a\xe2\x70\x56\xa4\xe9\xac\x27\xe3\x8f\xb6\x45\x43\xd7\x62\x2d\x57\xdf\x5e\x9d\xfe\x9f\x07\x7c\x8f\x6e\x7f\xe6\x35\x94\x69\xc7\xd8\x68\xb8\x6a\x3f\xe6\x88\x27\x76\x8c\x94\x2e\xa1\x2e\xfa\xec\x89\xf5\x79\xf6\x4a\x9b\x3d\xb7\x72\x88\xf1\x91\x20\xb6\xfe\x29\x2e\x69\x45\x1e\xcd\xa2\x73\xe1\xba\xbc\xba\xbc\x5a\x5d\x74\x27\xfa\x65\x55\xa9\x34\x76\x31\x9e\xbd\xe4\x76\x3e\x81\x8e\xf1\xfb\xd8\xd2\x1e\x1e\xc0\x45\x74\xfc\xc2\xee\x45\x7c\xeb\x9e\xdc\x82\xf1\xb7\xde\xc0\x87\xb6\x53\xff\xfa\xf6\xbe\xef\x45\x34\xef\x28\x52\x70\x5d\x67\x02\x53\x59\x4f\x60\xa3\x30\x34\xe2\x18\xc7\x55\xbd\x1f\x1f\x2e\x0c\x69\x6b\x77\xa1\x05\x45\x14\x90\xc0\x1a\x20\xdb\x20\xbc\x0b\x6b\x74\x06\x3d\x12\x6b\x0f\x2d\x8d\xef\x12\x95\xa1\x7e\x22\x9e\xdd\x5a\x83\xb3\xfc\xcb\xab\xe8\x40\xfe\x32\x91\x8c\xd3\xf4\xb1\xa2\xa7\x3a\xd1\xbf\xc9\x97\x81\x85\xcd\x56\xb3\x8b\xff\x05\x00\x00\xff\xff\xb6\xeb\x7c\x60\x55\x18\x00\x00"), + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\x58\x5f\x6f\x1b\x37\x12\x7f\xf7\xa7\x18\x28\x0f\x69\x00\x69\x65\xd5\x6d\x71\xd8\x9e\x0b\xa4\x49\xe3\xcb\xa5\x71\x8c\xf8\x72\x87\x7b\xba\x52\xdc\x91\x96\x10\x97\xdc\xe3\x90\x52\x05\xa3\xdf\xfd\x30\xe4\xfe\xe1\x5a\x72\x52\xe4\xed\xf2\x10\xdb\xdc\xe1\xfc\x25\x7f\xf3\x1b\x2e\x16\x8b\x0b\xd1\xaa\x7f\xa2\x23\x65\x4d\x09\xa2\x6d\x69\xb9\x5f\x5d\xec\x94\xa9\x4a\x78\x8d\xad\xb6\xc7\x06\x8d\xbf\x68\xd0\x8b\x4a\x78\x51\x5e\x00\x18\xd1\x60\x09\x1b\x1d\x7e\x7f\x78\x00\xb5\x81\xe2\x56\x34\x48\xad\x90\x08\x7f\xfc\xd1\x7d\x8f\x7f\x96\xf0\xf0\x30\xfd\xfa\xf0\x00\x68\x2a\x16\xa3\x16\x25\x2b\x73\xd8\x6a\x25\x05\x95\xb0\xba\x00\x20\xd4\x28\xbd\x75\xfc\x05\xa0\x11\x5e\xd6\xbf\x8a\x35\x6a\x4a\x0b\xb9\x6d\x96\xf6\x4e\x78\xdc\x1e\xd3\x47\x7f\x6c\xb1\x84\x8f\x28\x1d\x0a\x8f\x17\x00\x1e\x9b\x56\x0b\x8f\x9d\xb2\x2c\x02\xfe\x27\x8c\xb1\x5e\x78\x65\xcd\xa0\x1c\xa0\x75\xb6\x41\x5f\x63\xa0\x42\xd9\x65\x6b\x9d\x2f\x61\x76\x75\x79\xb5\x9a\xc1\x33\xf0\xa8\x75\x26\x01\xde\x02\x49\x27\x5a\x84\x65\x83\xde\x29\x49\x1c\x5c\x6b\x95\xf1\xcf\x09\x78\x73\xd1\x29\xd6\x93\x18\x1e\x45\x01\xd0\xe7\x22\xfe\x8e\x6e\xaf\x24\xbe\x94\xd2\x06\xe3\x6f\xa7\x82\x00\x7b\xab\x43\x83\x83\xaa\x45\xa7\x6a\xab\xfc\x62\x87\xc7\xc1\x00\x71\x16\xfc\x68\xb0\x5f\x19\xf5\x2d\x78\x4b\x15\x0b\x9c\x49\x55\xb8\x11\x41\xfb\xf7\xb6\xc2\x12\x2e\xbf\xbb\xbc\x84\x67\x70\xa8\xd1\x40\xc3\xde\x60\x05\x0e\x45\xb5\xb0\x46\x1f\xe7\x70\x40\x38\x58\xf3\xdc\xc3\x1a\x41\xac\x35\x72\x3e\x64\xdd\xd8\xea\xa2\x53\xf8\x0c\xfe\x51\x2b\x02\x45\x20\xc0\x37\xed\x86\x20\x10\x56\xb0\xb1\x0e\xb6\x68\xd0\x09\xaf\xcc\x16\xee\xef\xff\x06\x3b\x3c\x52\x01\x6f\x0d\xbc\xfb\x0b\xc1\x4f\xd7\xb0\x2a\x56\x97\xf3\x41\x4b\x6f\x3b\x85\x40\x20\x1c\xe6\x7e\x90\x65\x57\x0c\x62\x05\x02\x08\x5b\xc1\x87\xa2\x4b\x14\x1c\x70\x50\x23\x85\x81\x83\x53\x9e\x1d\x2d\xce\xe7\x6f\x8b\x66\x48\x06\x36\xad\x3f\xbe\x56\x2e\x4f\x62\x83\x95\x0a\x4d\x09\xef\xb1\xb1\xee\x98\xc7\x89\xb0\xb1\x5a\xdb\x03\x47\xd4\x99\x56\x14\x43\x0d\xc4\x6b\x02\x64\x20\x6f\x1b\xc5\x19\xd8\x19\x7b\x30\xff\xa9\x2d\x79\x1a\x54\x6c\x94\xc6\x39\x1c\x6a\x25\x6b\x38\xda\x00\x07\xa5\x75\x0a\xca\x5b\xa8\x2c\xdf\x33\x5e\xe6\x4d\xfc\x8b\x03\x7b\x30\xec\xf6\xa0\xc0\x61\x6b\xc1\x09\x5f\xa3\x03\x5f\x0b\xd3\x19\xde\x2a\x5f\x87\x35\x58\x5e\x44\xd0\x6a\x87\x05\xfc\xdb\x86\xe7\x5a\x83\xd0\x64\x7b\x13\xd3\x64\x83\xf2\xa0\x8c\xb7\x71\x8f\xb4\xc6\x0b\x65\xd0\xcd\x61\x8d\xda\x1e\x0a\xb8\xc7\x31\xab\xb5\xf7\x2d\x95\xcb\x65\x65\x25\x15\x7c\xb0\x64\xc5\x57\x07\xcd\x92\xaf\x1e\xf9\xe5\x36\xa8\x0a\x69\x19\x08\x17\xad\x53\x7b\xe1\x31\x1e\x3d\x0e\xa4\xa8\x7d\xa3\x07\x4d\x7d\x2d\x88\xea\x85\xb4\x66\xa3\xb6\xc3\x27\x80\xb4\xf0\x5e\xb4\x65\xb6\x98\x5f\xa4\x45\xb6\xed\x6b\xeb\x52\xec\xc2\x1a\x97\x49\xc9\x78\xfc\xbe\x58\x93\x83\xa2\x9a\x57\x6a\xb1\x47\x10\x50\xa9\xcd\x06\x1d\x83\x66\xaf\xa1\xbb\x55\x23\x30\xc6\x12\x24\x75\x79\x11\x18\x5c\xf6\xaa\xc2\x3e\xed\x1b\xb5\x6d\x44\x3b\x3a\xa2\x7c\x0d\xc2\x00\x1a\xef\x8e\x31\x86\xdf\x92\xd0\x6f\x73\x10\xa6\x82\x60\xa4\x6d\x18\xad\xe3\xfe\x14\xed\xfb\x58\x4e\x61\xaa\x41\x0b\x9a\x7d\xd4\xa0\x90\xba\x7a\x9e\x54\x80\xd3\xf0\x15\x15\xc8\xb6\x7d\xb1\x02\x11\x09\xbc\x05\xd5\x30\x4e\xc2\xcd\xdd\x4d\x04\x01\xf8\x86\xc3\x22\xb5\x35\xca\x8c\xc6\x39\xb8\x3d\x3a\xb5\x51\x32\x02\x36\xb4\xc1\xb5\x96\x90\x5e\xfc\x89\x44\x0e\x5a\x12\x7c\xa4\x2c\x72\x82\xd8\xde\x9f\x48\x1c\x08\xb7\x1d\xaf\xe9\x13\x19\xdb\xb6\x5b\xc6\x0f\xca\x52\x33\x85\xe0\x67\x4f\x80\xf0\xe9\xbe\x33\x20\xdc\xa7\x73\xb8\x89\x27\xf8\x9f\x75\x88\x2e\xeb\x0e\x23\x4e\x1a\x0b\xb3\x32\xdd\xc4\x19\xa8\x46\x6c\x31\x9d\x7e\xde\x50\xc0\x1b\x65\xaa\x18\x73\xc3\xb0\xe2\x50\x8e\xa7\x36\x41\x8a\x46\x41\xc8\xe0\x11\xb7\x72\x11\x98\x27\x80\xf0\xc3\xbd\xaf\xc3\xba\xa8\xac\xdc\xa1\x2b\xa4\x6d\x96\x6e\x79\x40\xb1\xc7\x83\x75\x3b\x5a\xb2\x91\xa5\x17\x43\xfa\xfa\x5a\x72\xcf\x67\x3e\xc0\x96\xbd\xd8\x02\x7b\x5b\x0c\x32\xd1\x54\x09\x9d\x52\x65\x97\x09\x55\xe2\x8f\x72\x55\xac\xae\x8a\xab\xa9\xec\x5d\xd0\xfa\xce\x6a\x25\x8f\x25\xbc\xdd\xdc\x5a\x7f\xe7\x90\xf2\x48\x1c\x92\x0d\x4e\x22\xe5\x58\xee\xf0\xbf\x01\xc9\x4f\xd6\x00\x64\x1b\x4a\xf8\xfe\xb2\x99\x2c\x36\x11\xee\x4b\xf8\xe1\xbb\xf7\x6a\xa4\x0a\xd6\xe5\x9b\x17\x63\x75\xee\x22\x6d\xb8\xba\xbc\xe2\xee\xa9\xcc\xc6\xba\x26\x1e\x5b\xa1\x07\x69\xad\xf6\x68\x90\xe8\xce\xd9\x35\xe6\x1e\x70\x5a\x6f\xa6\x9d\x3b\x99\x4a\x0a\xa7\xcb\xc2\xd7\x25\x2c\x45\xab\x52\xa6\xf7\x3f\x2c\x55\x85\xc6\x2b\x7f\x2c\xda\xb0\xce\x64\x95\x51\x5e\x09\xfd\x1a\xb5\x38\xde\xf3\x1d\xad\xa8\x84\xef\x33\x01\xaf\x1a\xb4\xc1\x9f\xf9\xc6\x8d\x56\xfd\x7f\xb8\x9a\x5d\xdc\x49\x61\xce\x53\x24\x48\xad\xee\x2e\x79\x86\x5e\x46\xcf\xaa\x25\x51\xcd\x5c\xcf\x26\xf6\x09\xda\x76\x98\xb3\xe5\x92\x81\x32\xe9\xcc\x3d\xa7\xb4\x87\xa8\x5e\x4e\xa0\xb2\xcf\xd9\x07\xa3\x8f\x25\x78\x17\x90\xb5\x31\x0f\x8a\x28\xb5\xee\xc0\x9d\xaf\x55\x8b\x6e\x63\x9d\x44\x56\x9a\x88\x0f\xf3\x9e\xa7\x1c\xcf\xb9\xc9\xd4\xf7\xbd\x70\x9d\xef\x49\xec\xeb\xdc\xcf\xee\xe8\x5b\x23\x75\x88\xe8\xc9\xf4\x2d\x35\xb9\x1e\x59\x13\x3f\xf8\x02\x9d\xe9\x09\xcd\x8f\xbc\xf5\x11\xd5\x18\x10\x16\x2a\x94\x5a\x38\xa6\x6d\x6b\xbb\xcf\x00\xe0\x33\x54\x20\x41\x64\x1e\xbc\xb3\xd6\x2f\x0b\xa2\xfa\xc9\x00\x84\x99\x58\x9d\x8d\x6d\x6a\x96\x2c\xcf\x7b\x91\x4c\x03\x9a\xbd\x72\xd6\xc4\xa6\x90\xfa\xed\xec\xdd\xa7\x9f\x7f\x79\xf5\xe1\xf6\xcd\xdb\x9b\x59\x6a\x03\x73\xce\x87\xdd\xa3\x73\xd3\x9e\x9d\xa9\x89\x6d\x6e\x7d\x4c\x1d\xd5\xeb\x73\x31\x9e\x34\xdb\xd3\x18\xc7\xc3\xc9\xc2\x4f\x06\xca\x7d\x8f\x87\x8f\xde\x1a\xc3\x74\x46\x47\x3a\xef\x62\x4d\x32\x15\x8f\x49\x4d\x5e\xf4\xc8\x68\x7a\xfa\x2d\x0c\x08\xed\xd1\x19\xa6\xd7\x27\x1e\x6f\x9c\x6d\xf8\x58\xf4\xac\x65\x0e\x82\xf8\xb8\x75\x9d\x95\xd3\xa0\xad\xdc\xd1\x69\xb1\xd1\xec\xcb\x33\x79\x19\xd3\x3d\xc9\xcb\x5e\xe8\x80\x27\x39\xf9\xd2\x21\x7e\x7c\x06\xfa\xbe\xfb\x99\x13\xc0\x6d\x7f\xda\xee\x3f\xd3\xf0\x9f\x38\x97\x2c\x95\x18\xce\x44\x6e\x8a\x0f\xa3\xd3\x6c\xb2\x9c\xc4\x90\xca\x90\xc6\x34\xac\xb8\x11\x49\x21\x6b\xac\x38\xb3\x79\x69\x07\x66\xc9\x45\xe4\xb4\xcc\x33\x2d\xd6\x75\xd4\x31\xdb\xd0\x8d\x99\x71\xe3\x3c\x1a\xe1\xf1\x88\x42\xdb\xea\x23\x27\x82\xf2\x54\x8c\x04\xce\x1f\x2c\x7b\x19\xb8\xa4\xf1\xc0\xc5\x99\x38\xd6\x01\x6a\x7b\x88\x23\xa0\x35\x06\xa5\x8f\xe4\xce\x4f\x53\xb7\x58\x0c\x01\x44\xfe\xcf\xc6\xaf\x87\xa5\xa2\xe3\x3d\x05\xed\x65\x21\x75\x20\x8f\xae\x60\xfc\xd2\x79\x4a\x3e\x51\xba\x6a\x63\x2a\x5e\x25\xd1\xb7\x77\x93\xa0\xf8\xd6\x11\xfa\x38\x62\x4e\x0b\x3b\xfa\xd0\xcb\xf3\x20\xef\x1d\x4b\xc6\xa1\x2f\x43\xe0\xdc\xe3\x4e\xfa\xfa\x62\x42\xb4\x14\x41\x13\x28\x0e\xc1\x31\x7b\x0a\xab\x74\x9a\xd6\x11\xd7\x23\xc5\x89\xb3\xef\x37\xfd\x40\xf9\x22\xf7\xa5\xbf\x5b\xe9\x14\x32\x33\xcb\x46\xe0\x89\x23\x8c\x85\x09\xdf\x17\x95\x72\xd7\x27\xa8\x9f\xbb\xf5\x31\x23\x58\x63\xf1\x3e\x7d\xfc\x35\xcd\xe8\xc2\x6c\xd3\xb7\x1b\xe5\xe3\xdc\x48\xca\x5b\x77\x1c\xd0\xea\x0d\x93\xc3\x89\x71\xee\x41\xc1\xe9\xeb\x87\x07\x28\x6e\x94\x67\x4d\xf1\xa9\x67\x2a\xb1\x76\xc2\xc8\xba\x17\xfa\x39\xfe\x95\x1e\x7d\xd4\x26\x2e\xf1\xdd\xa0\x73\x3b\x99\x1f\xf0\xbe\xfb\x58\x06\xfa\xbb\x55\x26\xdb\x30\x9b\xcf\xba\xb7\x23\x4d\x98\x6f\x67\x7a\x75\xda\xaa\x0e\xc2\xc4\xe3\xe7\x90\xab\x2a\x13\xab\x6f\x84\x51\x1b\xe6\x7b\x7c\x40\x49\x55\xe8\x52\xac\x8f\x98\x73\x9c\x79\x2d\x21\x04\x53\xa1\x7b\x94\x40\x87\x5a\x78\xb5\xc7\x48\x67\xa8\x2f\xef\x76\x92\xc4\x47\x07\x7e\x08\x8e\xc2\xba\x52\x6e\x35\x4f\x3f\xbf\x1d\x1e\xc2\xc6\xe4\xc4\x87\xae\x73\xc9\x89\xaf\x47\x7d\x56\x7b\xa9\x33\x0a\x3e\x11\xba\x73\xfb\x03\xa1\x1b\x2a\xc7\x32\x70\x7e\xff\x2f\x8d\x50\x67\x1d\x40\xfe\xd0\x6b\xe8\xa5\xc6\xa7\xbc\xb3\xa0\x8b\x7c\x4f\x0f\x96\x13\x8a\x26\x3e\x0f\x71\x9e\xb8\x1b\x28\xff\x68\xc0\xcb\x73\xd5\xe1\x6a\x87\x9a\xd7\x9f\x81\xd1\x7e\x47\xa7\x8b\x77\x5d\xff\x75\x87\x47\x50\xd5\x4f\x83\xd8\x67\x5a\x65\xe6\x15\xab\x10\x3e\x38\x9c\x4c\x99\x67\x6c\xc5\xcf\xc7\xc5\x20\x4f\x4f\xc7\x6e\xf0\x77\xdf\x27\x20\x83\x44\x61\x60\x16\x5a\xf2\x0e\x45\x33\xeb\x01\x2b\x53\xf2\x0d\x16\xdb\x62\x0e\xff\xe2\x21\x0a\x5e\x69\x1b\xaa\x17\x45\x1c\xa2\xbd\xdd\x31\x7f\x23\x68\x85\xf3\x4a\x06\x2d\x1c\x74\x0f\x34\x9d\x96\xc7\x58\xdb\x59\xbd\x3e\x10\xcf\x69\x92\x75\x15\x71\x38\x2b\xd2\x74\xd6\x93\xf1\x47\xdb\xa2\xa1\x6b\xb1\x96\xab\x6f\xaf\x4e\xff\xcf\x03\xbe\x47\xb7\x3f\xf3\xf6\xc9\xb4\x63\x6c\x34\x5c\xb5\x1f\x73\xc4\x13\x3b\x46\x4a\x97\x50\x17\x7d\xf6\xa0\xfa\x3c\x7b\x93\xcd\x1e\x57\x39\xc4\xf8\x48\x10\x5b\xff\x14\x97\xb4\x22\x8f\x66\xd1\xb9\x70\x5d\x5e\x5d\x5e\xad\x2e\xba\x13\xfd\xb2\xaa\x54\x1a\xbb\x18\xcf\x5e\x72\x3b\x9f\x40\xc7\xf8\x7d\x6c\x69\x0f\x0f\xe0\x22\x3a\x7e\x61\xf7\x22\xbe\x6c\x4f\x6e\xc1\xf8\x5b\x6f\xe0\x43\xdb\xa9\x7f\x7d\x7b\xdf\xf7\x22\x9a\x77\x14\x29\xb8\xae\x33\x81\xa9\xac\x27\xb0\x51\x18\x1a\x71\x8c\xe3\xaa\xde\x8f\x0f\x17\x86\xb4\xb5\xbb\xd0\x82\x22\x0a\x48\x60\x0d\x90\x6d\x10\xde\x85\x35\x3a\x83\x1e\x89\xb5\x87\x96\xc6\x77\x89\xca\x50\x3f\x11\xcf\x6e\xad\xc1\x59\xfe\xe5\x55\x74\x20\x7f\x99\x48\xc6\x69\xfa\x58\xd1\x53\x9d\xe8\xdf\xe4\xcb\xc0\xc2\x66\xab\xd9\xc5\xff\x02\x00\x00\xff\xff\x4e\x9e\x09\xda\x43\x18\x00\x00"), }, "/flux-secret.yaml.tmpl": &vfsgen۰CompressedFileInfo{ name: "flux-secret.yaml.tmpl", - modTime: time.Date(2019, 8, 8, 13, 51, 12, 391220692, time.UTC), + modTime: time.Date(2019, 8, 5, 10, 14, 20, 433647241, time.UTC), uncompressedSize: 137, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\xca\x31\x0a\xc2\x40\x10\x85\xe1\x7e\x4f\xf1\x2e\xb0\x82\xed\x1c\x42\x0b\xc1\x7e\xc8\xbe\xc8\x62\xb2\x19\x93\x89\x18\x86\xdc\x5d\x14\x1b\xcb\x9f\xff\xcb\x39\x27\xb5\x7a\xe5\xbc\xd4\xa9\x09\x9e\xc7\x74\xaf\xad\x08\x2e\xec\x66\x7a\x1a\xe9\x5a\xd4\x55\x12\xd0\x74\xa4\xa0\x1f\xd6\x57\xbe\x55\xcf\x85\x36\x4c\x5b\x04\x6a\x8f\xc3\x49\x47\x2e\xa6\x1d\xb1\xef\x3f\xfa\x4d\x41\xc4\xff\x8d\x00\x5b\xf9\x30\xdf\x8c\x82\xb3\xe9\x63\x65\x7a\x07\x00\x00\xff\xff\x40\x21\xa1\xbb\x89\x00\x00\x00"), }, "/memcache-dep.yaml.tmpl": &vfsgen۰CompressedFileInfo{ name: "memcache-dep.yaml.tmpl", - modTime: time.Date(2019, 8, 8, 13, 51, 12, 391706708, time.UTC), + modTime: time.Date(2019, 8, 5, 10, 14, 20, 433647241, time.UTC), uncompressedSize: 874, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x93\xcd\x6e\x9c\x40\x10\x84\xef\x3c\x45\x49\x7b\x0d\x1b\x61\x69\x2f\xdc\xa2\x38\x89\x2c\x25\xd6\x5e\x9c\x7b\x7b\x68\xf0\x28\xf3\x97\xe9\x66\xb3\x04\xf9\xdd\xa3\xd9\x5f\x36\xf6\x9c\x80\xaa\xaf\xa7\xa6\x80\xba\xae\xab\x15\x3c\x7b\x43\xe6\x85\x3b\x74\x9c\x5c\x9c\x3c\x07\xc5\x28\xdc\xe1\x79\xc2\x57\x37\xee\xa1\x11\x07\x47\xb5\x82\x89\x41\xc9\x06\xce\xb0\x9e\x06\x86\x67\xa5\x8e\x94\xd6\x15\x25\xfb\x93\xb3\xd8\x18\x5a\x50\x4a\xf2\x71\xd7\x54\xbf\x6c\xe8\x5a\xdc\x5f\xc6\x56\x67\x7b\x5b\x01\x81\x3c\xb7\xd7\xdd\xe7\x19\xb6\xc7\xfa\x91\x3c\x4b\x22\xc3\x78\x7d\x3d\x99\x0e\xb7\x2d\xe6\xf9\x56\x9d\x67\x70\xe8\x8a\x4d\x12\x9b\x32\x31\x73\x72\xd6\x90\xb4\x68\x2a\x40\xd8\xb1\xd1\x98\x8b\x02\x78\x52\xf3\xf2\x9d\x9e\xd9\xc9\xf1\xc1\x9b\x00\x15\xa0\xec\x93\x23\xe5\x13\xb2\x08\x5b\x96\xbb\xa1\xdf\xe3\x81\x73\x94\xb2\x2e\x5d\x5d\x98\xfa\x5d\xa6\xac\x43\x9b\x0b\xa1\x6d\xd6\x9b\x75\xb3\xb9\xd5\xb7\xa3\x73\xdb\xe8\xac\x99\x5a\x3c\xf4\x8f\x51\xb7\x99\xa5\xd4\x7a\x76\x51\x1e\x16\xf9\x6a\xd4\x1e\x9b\xe6\x0e\xc0\x0a\x3f\x68\x6f\xfd\xe8\xcb\x0e\x31\x4f\xe5\x95\x8e\xc2\x1f\x60\x03\x3c\x0f\xf4\x3c\x29\xcb\x12\x7c\xc0\xc6\xe3\x06\x14\xfb\x97\xd1\xc7\x8c\x18\x18\x56\xd9\x2f\xed\x09\x4d\x73\xd7\x34\x58\xe1\x9e\x7b\x1a\x9d\x22\xc5\x7c\xcd\xb5\x2a\x9e\xdd\xee\x78\xf9\x14\x4c\xf4\x87\x8f\x4c\x23\x06\x56\xb8\x38\x08\x62\x0f\x26\xf3\x82\xcc\xbf\x47\x16\x05\x85\x0e\x99\x25\xc5\x20\xbc\xbe\x0c\x2a\x53\x6f\x4e\x78\xec\xd3\x38\xcb\x41\xaf\x07\x58\x74\xbf\x8d\x59\xdb\x63\xba\x8b\x2c\x6c\xc6\x6c\x75\xfa\x1c\x83\xf2\x5e\xdb\x05\x97\xc7\xf0\x49\x9e\x84\xf3\xff\xcc\x49\xfa\x96\xe3\x98\xde\x6a\xe4\x5c\xfc\xb3\xcd\x76\x67\x1d\x0f\xfc\x45\x0c\x39\xd2\xc3\xaf\xd0\x93\x13\xae\xfe\x05\x00\x00\xff\xff\x5d\x9a\x63\xab\x6a\x03\x00\x00"), }, "/memcache-svc.yaml.tmpl": &vfsgen۰CompressedFileInfo{ name: "memcache-svc.yaml.tmpl", - modTime: time.Date(2019, 8, 8, 13, 51, 12, 391977285, time.UTC), + modTime: time.Date(2019, 8, 5, 10, 14, 20, 433647241, time.UTC), uncompressedSize: 206, compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x8c\x3d\x0e\x02\x21\x10\x46\x7b\x4e\xf1\x5d\x00\x13\x2c\x39\x84\x8d\x89\xfd\x04\x3e\x23\x51\x58\x02\x64\x9b\xc9\xde\xdd\xb0\x6b\xe3\x76\xf3\xf3\xde\xb3\xd6\x1a\xa9\xe9\xc1\xd6\xd3\x52\x3c\x56\x67\xde\xa9\x44\x8f\x3b\xdb\x9a\x02\x4d\xe6\x90\x28\x43\xbc\x01\x8a\x64\x7a\x64\xe6\x20\xe1\xc5\xa8\x8a\xf4\xc4\xe5\x26\x99\xbd\x4a\x20\xb6\xed\x07\xed\xab\x87\xea\xff\x57\x15\x2c\x71\x62\xbd\x32\xcc\x62\x5d\xda\xe8\x73\x00\xec\x39\xbf\x5f\x0f\xc4\xc3\xb9\xab\x73\x06\xe8\xfc\x30\x8c\xa5\x1d\xce\xd9\xf8\x06\x00\x00\xff\xff\x20\x2f\xef\xba\xce\x00\x00\x00"), diff --git a/install/templates/flux-deployment.yaml.tmpl b/install/templates/flux-deployment.yaml.tmpl index 5da11895c..256d07e24 100644 --- a/install/templates/flux-deployment.yaml.tmpl +++ b/install/templates/flux-deployment.yaml.tmpl @@ -36,7 +36,7 @@ spec: # file, which you will need to do if you host your own git # repo rather than using github or the like. You'll also need to # mount it into the container, below. See - # /~https://github.com/weaveworks/flux/blob/master/docs//guides/use-private-git-host.md + # https://docs.fluxcd.io/en/latest/guides/use-private-git-host.html # - name: ssh-config # configMap: # name: flux-ssh-config diff --git a/internal_docs/releasing.md b/internal_docs/releasing.md index 08dbecb8b..e535258fd 100644 --- a/internal_docs/releasing.md +++ b/internal_docs/releasing.md @@ -71,7 +71,7 @@ change. **Creating the release** -8. [Create a release in GitHub](/~https://github.com/weaveworks/flux/releases/new) +8. [Create a release in GitHub](/~https://github.com/fluxcd/flux/releases/new) Use a tag name as explained above; semver for the Flux daemon, `helm-` then the semver for the Helm operator. diff --git a/release/errors.go b/release/errors.go index 92f2f28c0..21d7720cb 100644 --- a/release/errors.go +++ b/release/errors.go @@ -14,14 +14,14 @@ func MakeReleaseError(err error) *fluxerr.Error { This may be because of a limitation in the formats of file Flux can deal with. See - /~https://github.com/weaveworks/flux/blob/master/docs/requirements.md + https://docs.fluxcd.io/en/latest/requirements.html for those limitations. If your files appear to meet the requirements, it may simply be a bug in Flux. Please report it at - /~https://github.com/weaveworks/flux/issues + /~https://github.com/fluxcd/flux/issues and try to include the problematic manifest, if it can be identified. `, diff --git a/remote/errors.go b/remote/errors.go index 58cc54bdc..12acc6cb6 100644 --- a/remote/errors.go +++ b/remote/errors.go @@ -22,11 +22,11 @@ and try the operation again. Otherwise, please consult the installation instructions in our documentation: - /~https://github.com/weaveworks/flux/blob/master/docs/get-started/index.rst + https://docs.fluxcd.io/en/latest/get-started/ If you are still stuck, please log an issue: - /~https://github.com/weaveworks/flux/issues + /~https://github.com/fluxcd/flux/issues `, Err: err, @@ -89,11 +89,11 @@ Otherwise, it is likely to be an ongoing problem until fluxd is updated and/or redeployed. For help, please consult the installation instructions: - /~https://github.com/weaveworks/flux/blob/master/docs/install/index.md + https://docs.fluxcd.io/en/latest/get-started/ If you are still stuck, please log an issue: - /~https://github.com/weaveworks/flux/issues + /~https://github.com/fluxcd/flux/issues `, Err: err,