Skip to content

Commit

Permalink
Change repository references to https://github.com/kubernetes/kubernetes
Browse files Browse the repository at this point in the history
  • Loading branch information
mamikonyana committed Jan 22, 2016
1 parent f788e1e commit 8b5e9e2
Show file tree
Hide file tree
Showing 22 changed files with 36 additions and 36 deletions.
2 changes: 1 addition & 1 deletion cluster/centos/master/scripts/apiserver.sh
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ KUBE_APISERVER_OPTS=" \${KUBE_LOGTOSTDERR} \\
cat <<EOF >/usr/lib/systemd/system/kube-apiserver.service
[Unit]
Description=Kubernetes API Server
Documentation=https://github.com/GoogleCloudPlatform/kubernetes
Documentation=https://github.com/kubernetes/kubernetes
[Service]
EnvironmentFile=-/opt/kubernetes/cfg/kube-apiserver
Expand Down
2 changes: 1 addition & 1 deletion cluster/centos/master/scripts/controller-manager.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ KUBE_CONTROLLER_MANAGER_OPTS=" \${KUBE_LOGTOSTDERR} \\
cat <<EOF >/usr/lib/systemd/system/kube-controller-manager.service
[Unit]
Description=Kubernetes Controller Manager
Documentation=https://github.com/GoogleCloudPlatform/kubernetes
Documentation=https://github.com/kubernetes/kubernetes
[Service]
EnvironmentFile=-/opt/kubernetes/cfg/kube-controller-manager
Expand Down
2 changes: 1 addition & 1 deletion cluster/centos/master/scripts/scheduler.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ KUBE_SCHEDULER_OPTS=" \${KUBE_LOGTOSTDERR} \\
cat <<EOF >/usr/lib/systemd/system/kube-scheduler.service
[Unit]
Description=Kubernetes Scheduler
Documentation=https://github.com/GoogleCloudPlatform/kubernetes
Documentation=https://github.com/kubernetes/kubernetes
[Service]
EnvironmentFile=-/opt/kubernetes/cfg/kube-scheduler
Expand Down
8 changes: 4 additions & 4 deletions cluster/libvirt-coreos/user_data_master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ coreos:
After=opt-kubernetes.mount etcd2.service
ConditionFileIsExecutable=/opt/kubernetes/bin/kube-apiserver
Description=Kubernetes API Server
Documentation=https://github.com/GoogleCloudPlatform/kubernetes
Documentation=https://github.com/kubernetes/kubernetes
Requires=opt-kubernetes.mount etcd2.service
[Service]
Expand All @@ -34,7 +34,7 @@ coreos:
After=opt-kubernetes.mount kube-apiserver.service
ConditionFileIsExecutable=/opt/kubernetes/bin/kube-controller-manager
Description=Kubernetes Controller Manager
Documentation=https://github.com/GoogleCloudPlatform/kubernetes
Documentation=https://github.com/kubernetes/kubernetes
Requires=opt-kubernetes.mount kube-apiserver.service
[Service]
Expand All @@ -53,7 +53,7 @@ coreos:
After=opt-kubernetes.mount kube-apiserver.service
ConditionFileIsExecutable=/opt/kubernetes/bin/kube-scheduler
Description=Kubernetes Scheduler
Documentation=https://github.com/GoogleCloudPlatform/kubernetes
Documentation=https://github.com/kubernetes/kubernetes
Requires=opt-kubernetes.mount kube-apiserver.service
[Service]
Expand All @@ -71,7 +71,7 @@ coreos:
After=opt-kubernetes.mount kube-apiserver.service
ConditionPathIsDirectory=/opt/kubernetes/addons
Description=Kubernetes addons
Documentation=https://github.com/GoogleCloudPlatform/kubernetes
Documentation=https://github.com/kubernetes/kubernetes
Requires=opt-kubernetes.mount
Wants=kube-apiserver.service
Expand Down
4 changes: 2 additions & 2 deletions cluster/libvirt-coreos/user_data_minion.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ coreos:
After=opt-kubernetes.mount docker.socket
ConditionFileIsExecutable=/opt/kubernetes/bin/kubelet
Description=Kubernetes Kubelet
Documentation=https://github.com/GoogleCloudPlatform/kubernetes
Documentation=https://github.com/kubernetes/kubernetes
Requires=opt-kubernetes.mount docker.socket
[Service]
Expand All @@ -32,7 +32,7 @@ coreos:
After=opt-kubernetes.mount
ConditionFileIsExecutable=/opt/kubernetes/bin/kube-proxy
Description=Kubernetes Proxy
Documentation=https://github.com/GoogleCloudPlatform/kubernetes
Documentation=https://github.com/kubernetes/kubernetes
Requires=opt-kubernetes.mount
[Service]
Expand Down
6 changes: 3 additions & 3 deletions cluster/rackspace/cloud-config/master-cloud-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ coreos:
content: |
[Unit]
Description=Kubernetes API Server
Documentation=https://github.com/GoogleCloudPlatform/kubernetes
Documentation=https://github.com/kubernetes/kubernetes
After=network-online.target
Requires=network-online.target
After=download-release.service
Expand Down Expand Up @@ -114,7 +114,7 @@ coreos:
content: |
[Unit]
Description=Kubernetes Controller Manager
Documentation=https://github.com/GoogleCloudPlatform/kubernetes
Documentation=https://github.com/kubernetes/kubernetes
After=network-online.target
Requires=network-online.target
After=kube-apiserver.service
Expand All @@ -134,7 +134,7 @@ coreos:
content: |
[Unit]
Description=Kubernetes Scheduler
Documentation=https://github.com/GoogleCloudPlatform/kubernetes
Documentation=https://github.com/kubernetes/kubernetes
After=network-online.target
Requires=network-online.target
After=kube-apiserver.service
Expand Down
4 changes: 2 additions & 2 deletions cluster/rackspace/cloud-config/node-cloud-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ coreos:
content: |
[Unit]
Description=Kubernetes Kubelet
Documentation=https://github.com/GoogleCloudPlatform/kubernetes
Documentation=https://github.com/kubernetes/kubernetes
After=network-online.target
Requires=network-online.target
After=docker.service
Expand All @@ -164,7 +164,7 @@ coreos:
content: |
[Unit]
Description=Kubernetes Proxy
Documentation=https://github.com/GoogleCloudPlatform/kubernetes
Documentation=https://github.com/kubernetes/kubernetes
After=network-online.target
Requires=network-online.target
After=docker.service
Expand Down
2 changes: 1 addition & 1 deletion cluster/saltbase/salt/kube-addons/kube-addons.service
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[Unit]
Description=Kubernetes Addon Object Manager
Documentation=https://github.com/GoogleCloudPlatform/kubernetes
Documentation=https://github.com/kubernetes/kubernetes

[Service]
ExecStart=/etc/kubernetes/kube-addons.sh
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[Unit]
Description=Kubernetes-Master Addon Object Manager
Documentation=https://github.com/GoogleCloudPlatform/kubernetes
Documentation=https://github.com/kubernetes/kubernetes

[Service]
ExecStart=/etc/kubernetes/kube-master-addons.sh
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[Unit]
Description=Kubernetes Node Unpacker
Documentation=https://github.com/GoogleCloudPlatform/kubernetes
Documentation=https://github.com/kubernetes/kubernetes

[Service]
ExecStart=/etc/kubernetes/kube-node-unpacker.sh
Expand Down
2 changes: 1 addition & 1 deletion cluster/saltbase/salt/kubelet/kubelet.service
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[Unit]
Description=Kubernetes Kubelet Server
Documentation=https://github.com/GoogleCloudPlatform/kubernetes
Documentation=https://github.com/kubernetes/kubernetes

[Service]
EnvironmentFile=/etc/sysconfig/kubelet
Expand Down
2 changes: 1 addition & 1 deletion contrib/mesos/pkg/scheduler/service/service.go
Original file line number Diff line number Diff line change
Expand Up @@ -652,7 +652,7 @@ func validateLeadershipTransition(desired, current string) {
}
}

// hacked from https://github.com/GoogleCloudPlatform/kubernetes/blob/release-0.14/cmd/kube-apiserver/app/server.go
// hacked from https://github.com/kubernetes/kubernetes/blob/release-0.14/cmd/kube-apiserver/app/server.go
func newEtcd(etcdServerList []string) (etcd.Client, error) {
cfg := etcd.Config{
Endpoints: etcdServerList,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ coreos:
Documentation=http://kubernetes.io/
Requires=network-online.target
[Service]
Environment=KUBE_RELEASE_TARBALL=https://github.com/GoogleCloudPlatform/kubernetes/releases/download/v1.1.2/kubernetes.tar.gz
Environment=KUBE_RELEASE_TARBALL=https://github.com/kubernetes/kubernetes/releases/download/v1.1.2/kubernetes.tar.gz
ExecStartPre=/bin/mkdir -p /opt/
ExecStart=/opt/bin/curl-retry.sh --silent --location $KUBE_RELEASE_TARBALL --output /tmp/kubernetes.tgz
ExecStart=/bin/tar xzvf /tmp/kubernetes.tgz -C /tmp/
Expand Down
6 changes: 3 additions & 3 deletions docs/getting-started-guides/coreos/cloud-configs/master.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ coreos:
content: |
[Unit]
Description=Kubernetes API Server
Documentation=https://github.com/GoogleCloudPlatform/kubernetes
Documentation=https://github.com/kubernetes/kubernetes
Requires=setup-network-environment.service etcd2.service generate-serviceaccount-key.service
After=setup-network-environment.service etcd2.service generate-serviceaccount-key.service
Expand Down Expand Up @@ -107,7 +107,7 @@ coreos:
content: |
[Unit]
Description=Kubernetes Controller Manager
Documentation=https://github.com/GoogleCloudPlatform/kubernetes
Documentation=https://github.com/kubernetes/kubernetes
Requires=kube-apiserver.service
After=kube-apiserver.service
Expand All @@ -125,7 +125,7 @@ coreos:
content: |
[Unit]
Description=Kubernetes Scheduler
Documentation=https://github.com/GoogleCloudPlatform/kubernetes
Documentation=https://github.com/kubernetes/kubernetes
Requires=kube-apiserver.service
After=kube-apiserver.service
Expand Down
4 changes: 2 additions & 2 deletions docs/getting-started-guides/coreos/cloud-configs/node.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ coreos:
content: |
[Unit]
Description=Kubernetes Proxy
Documentation=https://github.com/GoogleCloudPlatform/kubernetes
Documentation=https://github.com/kubernetes/kubernetes
Requires=setup-network-environment.service
After=setup-network-environment.service
Expand All @@ -64,7 +64,7 @@ coreos:
content: |
[Unit]
Description=Kubernetes Kubelet
Documentation=https://github.com/GoogleCloudPlatform/kubernetes
Documentation=https://github.com/kubernetes/kubernetes
Requires=setup-network-environment.service
After=setup-network-environment.service
Expand Down
4 changes: 2 additions & 2 deletions docs/proposals/selinux.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ and allocates a unique MCS label per pod.
### Kubernetes


There is a [proposed change](https://github.com/GoogleCloudPlatform/kubernetes/pull/9844) to the
There is a [proposed change](https://github.com/kubernetes/kubernetes/pull/9844) to the
EmptyDir plugin that adds SELinux relabeling capabilities to that plugin, which is also carried as a
patch in [OpenShift](https://github.com/openshift/origin). It is preferable to solve the problem
in general of handling SELinux in kubernetes to merging this PR.
Expand Down Expand Up @@ -216,7 +216,7 @@ depends on:

1. Users and groups in Kubernetes
2. General auth policy in Kubernetes
3. [security policy](https://github.com/GoogleCloudPlatform/kubernetes/pull/7893)
3. [security policy](https://github.com/kubernetes/kubernetes/pull/7893)

### API changes

Expand Down
6 changes: 3 additions & 3 deletions docs/proposals/volumes.md
Original file line number Diff line number Diff line change
Expand Up @@ -152,9 +152,9 @@ created in the volume will inherit the owning GID of the volume.

## Community Design Discussion

- [kubernetes/2630](https://github.com/GoogleCloudPlatform/kubernetes/issues/2630)
- [kubernetes/11319](https://github.com/GoogleCloudPlatform/kubernetes/issues/11319)
- [kubernetes/9384](https://github.com/GoogleCloudPlatform/kubernetes/pull/9384)
- [kubernetes/2630](https://github.com/kubernetes/kubernetes/issues/2630)
- [kubernetes/11319](https://github.com/kubernetes/kubernetes/issues/11319)
- [kubernetes/9384](https://github.com/kubernetes/kubernetes/pull/9384)

## Analysis

Expand Down
4 changes: 2 additions & 2 deletions docs/user-guide/logging-demo/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
# Elasticsearch and Kibana pods for the GCE platform.
# For examples of how to observe the ingested logs please
# see the appropriate getting started guide e.g.
# Google Cloud Logging: https://github.com/GoogleCloudPlatform/kubernetes/blob/master/docs/getting-started-guides/logging.md
# With Elasticsearch and Kibana logging: https://github.com/GoogleCloudPlatform/kubernetes/blob/master/docs/getting-started-guides/logging-elasticsearch.md
# Google Cloud Logging: https://github.com/kubernetes/kubernetes/blob/master/docs/getting-started-guides/logging.md
# With Elasticsearch and Kibana logging: https://github.com/kubernetes/kubernetes/blob/master/docs/getting-started-guides/logging-elasticsearch.md

.PHONY: up down logger-up logger-down logger10-up logger10-down

Expand Down
2 changes: 1 addition & 1 deletion pkg/ui/data/swagger/datafile.go
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ https://github.com/swagger-api/swagger-ui#how-to-use-it
## Local Modifications
- Updated the url in index.html to "../../swaggerapi" as per instructions at:
https://github.com/swagger-api/swagger-ui#how-to-use-it
- Modified swagger-ui.js to list resources and operations in sorted order: https://github.com/GoogleCloudPlatform/kubernetes/pull/3421
- Modified swagger-ui.js to list resources and operations in sorted order: https://github.com/kubernetes/kubernetes/pull/3421
- Set supportedSubmitMethods: [] in index.html to remove "Try it out" buttons.

LICENSE file has been created for compliance purposes.
Expand Down
2 changes: 1 addition & 1 deletion pkg/version/base.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ var (
gitMinor string = "" // minor version, numeric possibly followed by "+"

// semantic version, dervied by build scripts (see
// https://github.com/GoogleCloudPlatform/kubernetes/blob/master/docs/design/versioning.md
// https://github.com/kubernetes/kubernetes/blob/master/docs/design/versioning.md
// for a detailed discussion of this field)
//
// TODO: This field is still called "gitVersion" for legacy
Expand Down
2 changes: 1 addition & 1 deletion pkg/volume/git_repo/git_repo_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ type expectedCommand struct {
}

func TestPlugin(t *testing.T) {
gitUrl := "https://github.com/GoogleCloudPlatform/kubernetes.git"
gitUrl := "https://github.com/kubernetes/kubernetes.git"
revision := "2a30ce65c5ab586b98916d83385c5983edd353a1"

scenarios := []struct {
Expand Down
2 changes: 1 addition & 1 deletion plugin/pkg/auth/authenticator/request/keystone/doc.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ limitations under the License.

//Package keystone provide authentication via keystone.
// For details //about keystone and how to use the plugin, refer to
// https://github.com/GoogleCloudPlatform/kubernetes/blob/oidc/docs/admin/authentication.md
// https://github.com/kubernetes/kubernetes/blob/oidc/docs/admin/authentication.md
package keystone

0 comments on commit 8b5e9e2

Please sign in to comment.