Skip to content

Commit

Permalink
🚨 Update github import path
Browse files Browse the repository at this point in the history
Organization outscale-dev renamed to outscale
  • Loading branch information
jfbus committed Jan 7, 2025
1 parent cf8d568 commit c3052a8
Show file tree
Hide file tree
Showing 12 changed files with 27 additions and 28 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ DEPLOY_NAME := "k8s-osc-ccm"
SOURCES := $(shell find ./cloud-controller-manager -name '*.go')
GOOS ?= $(shell go env GOOS)
VERSION ?= $(shell git describe --tags --always --dirty)
LDFLAGS := "-w -s -X 'github.com/outscale-dev/cloud-provider-osc/cloud-controller-manager/utils.version=$(VERSION)'"
LDFLAGS := "-w -s -X 'github.com/outscale/cloud-provider-osc/cloud-controller-manager/utils.version=$(VERSION)'"

# Full log with -v -x
#GO_ADD_OPTIONS := -v -x
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ import (
_ "k8s.io/component-base/metrics/prometheus/version" // for version metric registration
"k8s.io/klog/v2"

osc "github.com/outscale-dev/cloud-provider-osc/cloud-controller-manager/osc"
osc "github.com/outscale/cloud-provider-osc/cloud-controller-manager/osc"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion cloud-controller-manager/osc/oapi_provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import (
"github.com/aws/aws-sdk-go/aws/session"
"github.com/aws/aws-sdk-go/service/elb"

"github.com/outscale-dev/cloud-provider-osc/cloud-controller-manager/utils"
"github.com/outscale/cloud-provider-osc/cloud-controller-manager/utils"

"context"

Expand Down
2 changes: 1 addition & 1 deletion deploy/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Tag key is `OscK8sNodeName` and tag value `my-kybernetes-host-name` (`my-kyberne
By default, the service controller will automatically create a Security Group for each Load Balancer Unit (LBU) and will attach it to nodes in a VPC setup.

If you want to use a pre-created Security Group to be applied to be attached/associated to the LBU, you must tag it with key `OscK8sMainSG/my-cluster-id` and value `True`.
Note that using LBU has some limitation (see issue [#68](https://github.com/outscale-dev/cloud-provider-osc/issues/68)).
Note that using LBU has some limitation (see issue [#68](https://github.com/outscale/cloud-provider-osc/issues/68)).

## Networking

Expand Down
4 changes: 2 additions & 2 deletions deploy/k8s-osc-ccm/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ description: A Helm chart for OSC CCM cloud provider
name: osc-cloud-controller-manager
version: 0.3.1
kubeVersion: ">=1.20.0-0"
home: https://github.com/outscale-dev/cloud-provider-osc/
home: https://github.com/outscale/cloud-provider-osc/
sources:
- https://github.com/outscale-dev/cloud-provider-osc/
- https://github.com/outscale/cloud-provider-osc/
keywords:
- osc
- ows
Expand Down
22 changes: 11 additions & 11 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,30 +34,30 @@ Filters terminated Vms in getInstance ([#352] (https://github.com/outscale/cloud

## [v0.2.0]
### Features
* Support link kubernetes node name and IaaS tag OscK8sNodeName ([#177](https://github.com/outscale-dev/cloud-provider-osc/issues/177))
* Add NodeSelector and Tolerations in helm Chart ([#173](https://github.com/outscale-dev/cloud-provider-osc/issues/173))
* Support link kubernetes node name and IaaS tag OscK8sNodeName ([#177](https://github.com/outscale/cloud-provider-osc/issues/177))
* Add NodeSelector and Tolerations in helm Chart ([#173](https://github.com/outscale/cloud-provider-osc/issues/173))
### Bugfixes
* Fix LoadBalancer creation in multi-AZ architecture ([#165](https://github.com/outscale-dev/cloud-provider-osc/issues/165))
* Update IAM Policy ([#167](https://github.com/outscale-dev/cloud-provider-osc/issues/167))
* Fix LoadBalancer creation in multi-AZ architecture ([#165](https://github.com/outscale/cloud-provider-osc/issues/165))
* Update IAM Policy ([#167](https://github.com/outscale/cloud-provider-osc/issues/167))
## [v0.1.1]
### Bugfixes
* Invalid zone in the metadata ([#149](https://github.com/outscale-dev/cloud-provider-osc/issues/149))
* Invalid zone in the metadata ([#149](https://github.com/outscale/cloud-provider-osc/issues/149))
## [v0.1.0]
### Notable changes
* Partial migration from AWS SDK to Outscale SDK ([#61](https://github.com/outscale-dev/cloud-provider-osc/issues/61))
* Provide Region and Zone during node initialization ([#118](https://github.com/outscale-dev/cloud-provider-osc/issues/118))
* Reduce log verbosity ([#64](https://github.com/outscale-dev/cloud-provider-osc/issues/64))
* Partial migration from AWS SDK to Outscale SDK ([#61](https://github.com/outscale/cloud-provider-osc/issues/61))
* Provide Region and Zone during node initialization ([#118](https://github.com/outscale/cloud-provider-osc/issues/118))
* Reduce log verbosity ([#64](https://github.com/outscale/cloud-provider-osc/issues/64))

### Bugfixes
* Implement workaround for the public cloud issue ([#68](https://github.com/outscale-dev/cloud-provider-osc/issues/68))
* Implement workaround for the public cloud issue ([#68](https://github.com/outscale/cloud-provider-osc/issues/68))
> **NOTE**: The actual solution is to not delete (in Public Cloud) the rule that allows all Public Cloud Loadbalancers to forward traffic to the cluster.
## [v0.0.10beta]

### Notable changes
* Support the ability to label CCM pods ([#72](https://github.com/outscale-dev/cloud-provider-osc/pull/72))
* Support the ability to label CCM pods ([#72](https://github.com/outscale/cloud-provider-osc/pull/72))
* Update to k8s v1.23.4
### Bugfixes
* Handle deletion of old nodes ([#84](https://github.com/outscale-dev/cloud-provider-osc/pull/84))
* Handle deletion of old nodes ([#84](https://github.com/outscale/cloud-provider-osc/pull/84))

## [v0.0.9beta]

Expand Down
2 changes: 1 addition & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@ Check [annotation documentation](../docs/annotations.md) for more details.

# Contributing

For new feature request or bug fixes, please [create an issue](https://github.com/outscale-dev/cloud-provider-osc/issues).
For new feature request or bug fixes, please [create an issue](https://github.com/outscale/cloud-provider-osc/issues).

If you want to dig into cloud-provider-osc, check [development documentation](development.md).
6 changes: 3 additions & 3 deletions docs/development.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ Resources regarding developping this ccm:
# Pre-requisites

You will need a Kubernetes cluster to launch some tests and debug some behaviors.
You can use [osc-k8s-rke-cluster](https://github.com/outscale-dev/osc-k8s-rke-cluster/) for this purpose.
You can use [osc-k8s-rke-cluster](https://github.com/outscale/osc-k8s-rke-cluster/) for this purpose.

You will also need a registry where to push your dev images. You can use whatever registry you want or install [a private registry](https://github.com/outscale-dev/osc-k8s-rke-cluster/tree/master/addons/docker-registry) which is available with osc-k8s-rke-cluster.
You will also need a registry where to push your dev images. You can use whatever registry you want or install [a private registry](https://github.com/outscale/osc-k8s-rke-cluster/tree/master/addons/docker-registry) which is available with osc-k8s-rke-cluster.

# Building

Expand All @@ -31,7 +31,7 @@ Dependencies are managed through go module. To build the project, first turn on

# Push dev image to registry

If you are using the [private registry addon](https://github.com/outscale-dev/osc-k8s-rke-cluster/tree/master/addons/docker-registry), start port-fowarding to access the registry:
If you are using the [private registry addon](https://github.com/outscale/osc-k8s-rke-cluster/tree/master/addons/docker-registry), start port-fowarding to access the registry:
```
./start_port_forwarding.sh
```
Expand Down
4 changes: 2 additions & 2 deletions docs/helm.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

A Helm chart for OSC CCM cloud provider

**Homepage:** <https://github.com/outscale-dev/cloud-provider-osc/>
**Homepage:** <https://github.com/outscale/cloud-provider-osc/>

## Maintainers

Expand All @@ -14,7 +14,7 @@ A Helm chart for OSC CCM cloud provider

## Source Code

* <https://github.com/outscale-dev/cloud-provider-osc/>
* <https://github.com/outscale/cloud-provider-osc/>

## Requirements

Expand Down
3 changes: 1 addition & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/outscale-dev/cloud-provider-osc
module github.com/outscale/cloud-provider-osc

go 1.22.5

Expand Down Expand Up @@ -155,5 +155,4 @@ replace (
k8s.io/legacy-cloud-providers => k8s.io/legacy-cloud-providers v0.30.2
k8s.io/metrics => k8s.io/metrics v0.30.2
k8s.io/pod-security-admission => k8s.io/pod-security-admission v0.30.2

)
2 changes: 1 addition & 1 deletion tests/e2e/lb_crud.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import (
"strings"
"time"

e2eutils "github.com/outscale-dev/cloud-provider-osc/tests/e2e/utils"
e2eutils "github.com/outscale/cloud-provider-osc/tests/e2e/utils"

elbApi "github.com/aws/aws-sdk-go/service/elb"
"github.com/onsi/ginkgo/v2"
Expand Down
4 changes: 2 additions & 2 deletions tests/e2e/utils/elb_api.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ import (
"github.com/aws/aws-sdk-go/aws/session"
elbApi "github.com/aws/aws-sdk-go/service/elb"

osc "github.com/outscale-dev/cloud-provider-osc/cloud-controller-manager/osc"
"github.com/outscale-dev/cloud-provider-osc/cloud-controller-manager/utils"
osc "github.com/outscale/cloud-provider-osc/cloud-controller-manager/osc"
"github.com/outscale/cloud-provider-osc/cloud-controller-manager/utils"
)

func elbSession() (*session.Session, error) {
Expand Down

0 comments on commit c3052a8

Please sign in to comment.