Skip to content

Commit

Permalink
branch rename to main
Browse files Browse the repository at this point in the history
  • Loading branch information
bonifaido committed Jan 31, 2022
1 parent 8f64b3a commit f2f8d65
Show file tree
Hide file tree
Showing 12 changed files with 18 additions and 19 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/anchore-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
name: Anchore Container Scan
on:
push:
branches: [master, anchore]
branches: [anchore]
paths-ignore:
- 'README.md'
- 'charts/**'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: "CodeQL"

on:
push:
branches: [master, ]
branches: [main, ]
pull_request:
branches: [master]
branches: [main]
schedule:
- cron: '0 19 * * 0'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Docker
on:
push:
branches:
- master
- main
tags:
- "[0-9]+.[0-9]+.[0-9]+"
env:
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<p align="center"><img src="https://raw.githubusercontent.com/banzaicloud/bank-vaults/master/docs/images/logo.svg" width="260"></p>
<p align="center"><img src="https://raw.githubusercontent.com/banzaicloud/bank-vaults/main/docs/images/logo.svg" width="260"></p>

<p align="center">

Expand Down Expand Up @@ -87,7 +87,7 @@ If you encounter any problems that is not addressed in our documentation, [open
If you find this project useful, help us:

- Support the development of this project and star this repo! :star:
- If you use Bank-Vaults in a production environment, add yourself to the list of production [adopters](https://github.com/banzaicloud/bank-vaults/blob/master/ADOPTERS.md).:metal: <br>
- If you use Bank-Vaults in a production environment, add yourself to the list of production [adopters](https://github.com/banzaicloud/bank-vaults/blob/main/ADOPTERS.md).:metal: <br>
- Help new users with issues they may encounter :muscle:
- Send a pull request with your new features and bug fixes :rocket:

Expand Down
6 changes: 3 additions & 3 deletions charts/vault-operator/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ be deployed beforehand and configured with the `vault.config` option. YAML
provided under this option will be converted to JSON for the final vault
`config.json` file.

> See https://github.com/banzaicloud/bank-vaults/tree/master/operator for more information on the Operator
> See https://github.com/banzaicloud/bank-vaults/tree/main/operator for more information on the Operator
> See https://www.vaultproject.io/docs/configuration/ for more information on storage options for Vault.
## Installing the Chart
Expand Down Expand Up @@ -83,10 +83,10 @@ Specify each parameter using the `--set key=value[,key=value]` argument to `helm

## Using Vault Operator

To deploy different Vault configurations (single node, HA, with AWS unsealing, with etcd backend, ...) see: https://github.com/banzaicloud/bank-vaults/tree/master/operator/deploy for more examples.
To deploy different Vault configurations (single node, HA, with AWS unsealing, with etcd backend, ...) see: https://github.com/banzaicloud/bank-vaults/tree/main/operator/deploy for more examples.

```bash
kubectl apply -f https://raw.githubusercontent.com/banzaicloud/bank-vaults/master/operator/deploy/cr-raft.yaml
kubectl apply -f https://raw.githubusercontent.com/banzaicloud/bank-vaults/main/operator/deploy/cr-raft.yaml
```

Once the Vault pods are ready (in HA setup always one is ready), it can be accessed using a `kubectl port-forward`:
Expand Down
2 changes: 1 addition & 1 deletion charts/vault-secrets-webhook/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ $ helm upgrade --namespace vswh --install vswh banzaicloud-stable/vault-secrets-

### About GKE Private Clusters

When Google configure the control plane for private clusters, they automatically configure VPC peering between your Kubernetes cluster’s network in a separate Google managed project.
When Google configures the control plane for private clusters, they automatically configure VPC peering between your Kubernetes cluster’s network in a separate Google managed project.

The auto-generated rules **only** open ports 10250 and 443 between masters and nodes. This means that to use the webhook component with a GKE private cluster, you must configure an additional firewall rule to allow your masters CIDR to access your webhook pod using the port 8443.

Expand Down
5 changes: 2 additions & 3 deletions charts/vault/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,10 @@ Please also note that scaling to more than 1 replicas can be made successfully o
## Installing the Chart

To install the chart, use the following, this backs Vault with a Consul cluster:
To install the chart, use the following:

```bash
helm init -c;
helm repo add banzaicloud-stable http://kubernetes-charts.banzaicloud.com/branch/master
helm repo add banzaicloud-stable https://kubernetes-charts.banzaicloud.com
helm install banzaicloud-stable/vault
```

Expand Down
4 changes: 2 additions & 2 deletions examples/istio/cr-istio.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ metadata:
spec:
size: 1
image: vault:1.3.1
bankVaultsImage: banzaicloud/bank-vaults:master
bankVaultsImage: banzaicloud/bank-vaults:main

# Common annotations for all created resources
annotations:
Expand Down Expand Up @@ -208,4 +208,4 @@ spec:
- ReadWriteOnce
resources:
requests:
storage: 1Gi
storage: 1Gi
2 changes: 1 addition & 1 deletion operator/deploy/cr-awskms.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ metadata:
spec:
size: 1
image: vault:1.6.2
bankVaultsImage: banzaicloud/bank-vaults:master
bankVaultsImage: banzaicloud/bank-vaults:main

serviceAccount: vault

Expand Down
2 changes: 1 addition & 1 deletion operator/deploy/cr-file.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ metadata:
spec:
size: 1
image: vault:1.6.2
bankVaultsImage: banzaicloud/bank-vaults:master
bankVaultsImage: banzaicloud/bank-vaults:main

serviceAccount: vault

Expand Down
2 changes: 1 addition & 1 deletion operator/deploy/cr-gcpkms.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ metadata:
spec:
size: 1
image: vault:1.6.2
bankVaultsImage: banzaicloud/bank-vaults:master
bankVaultsImage: banzaicloud/bank-vaults:main

serviceAccount: vault

Expand Down
2 changes: 1 addition & 1 deletion operator/pkg/apis/vault/v1alpha1/vault_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ type VaultSpec struct {
// - Plugin Backends
// - Policies
// - Startup Secrets (Bank Vaults feature)
// A documented example: https://github.com/banzaicloud/bank-vaults/blob/master/vault-config.yml
// A documented example: https://github.com/banzaicloud/bank-vaults/blob/main/vault-config.yml
// default:
ExternalConfig extv1beta1.JSON `json:"externalConfig,omitempty"`

Expand Down

0 comments on commit f2f8d65

Please sign in to comment.