Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rename gameserver-allocator resources to agones-allocator #994

Merged
merged 3 commits into from
Aug 13, 2019

Commits on Aug 13, 2019

  1. Rename gameserver-allocator resources to agones-allocator

    To keep consistency, renamed the gameserver-allocator k8s resources to being agones-allocator instead, which makes it
    consistent with the rest of the Agones system.
    
    This also means that if Agones is installed in a non default namespace, it is easy to determine which resources
    below to agones.
    
    This results in a display that looks like this:
    
    ```shell
    root@f999578d0b48:/go/src/agones.dev/agones# kubectl get all --namespace=agones-system
    NAME                                     READY   STATUS    RESTARTS   AGE
    pod/agones-allocator-5c988b7b8d-cgtbs    1/1     Running   0          2m3s
    pod/agones-allocator-5c988b7b8d-hhhr5    1/1     Running   0          2m3s
    pod/agones-allocator-5c988b7b8d-pv577    1/1     Running   0          2m3s
    pod/agones-controller-7db45966db-56l66   1/1     Running   0          2m
    pod/agones-ping-84c64f6c9d-bdlzh         1/1     Running   0          113s
    pod/agones-ping-84c64f6c9d-sjgzz         1/1     Running   0          2m3s
    
    NAME                                TYPE           CLUSTER-IP      EXTERNAL-IP     PORT(S)            AGE
    service/agones-allocator            LoadBalancer   10.51.255.102   34.83.220.20    443:32480/TCP      2m4s
    service/agones-controller-service   ClusterIP      10.51.253.115   <none>          443/TCP,8080/TCP   15h
    service/agones-ping-http-service    LoadBalancer   10.51.244.211   34.83.210.242   80:32317/TCP       15h
    service/agones-ping-udp-service     LoadBalancer   10.51.253.63    35.233.234.9    50000:30380/UDP    15h
    
    NAME                                DESIRED   CURRENT   UP-TO-DATE   AVAILABLE   AGE
    deployment.apps/agones-allocator    3         3         3            3           2m4s
    deployment.apps/agones-controller   1         1         1            1           15h
    deployment.apps/agones-ping         2         2         2            2           15h
    
    NAME                                           DESIRED   CURRENT   READY   AGE
    replicaset.apps/agones-allocator-5c988b7b8d    3         3         3       2m4s
    replicaset.apps/agones-controller-7db45966db   1         1         1       2m1s
    replicaset.apps/agones-controller-96967c45f    0         0         0       15h
    replicaset.apps/agones-ping-7d75f87b6c         0         0         0       15h
    replicaset.apps/agones-ping-84c64f6c9d         2         2         2       2m4s
    ```
    markmandel committed Aug 13, 2019
    Configuration menu
    Copy the full SHA
    882574b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f43bb3e View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    b6799ca View commit details
    Browse the repository at this point in the history