From be9b2a3b1449fcbf72220932da75fae16133dc3e Mon Sep 17 00:00:00 2001 From: Robert Leenders Date: Mon, 16 Nov 2015 18:43:17 -0800 Subject: [PATCH] Changes absolute url from leendersr/deployment-manager back to kubernetes/deployment-manager --- examples/wordpress/README.md | 6 +++--- examples/wordpress/wordpress.jinja | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/examples/wordpress/README.md b/examples/wordpress/README.md index 74d75abb0..9e2e57d06 100644 --- a/examples/wordpress/README.md +++ b/examples/wordpress/README.md @@ -62,7 +62,7 @@ The nginx service is a replicated service with 2 replicas: ``` - name: nginx - type: https://raw.githubusercontent.com/leendersr/deployment-manager/master/templates/replicatedservice/v2/replicatedservice.py + type: https://raw.githubusercontent.com/kubernetes/deployment-manager/master/templates/replicatedservice/v2/replicatedservice.py properties: service_port: {{ NGINX_PORT }} container_port: {{ NGINX_PORT }} @@ -82,7 +82,7 @@ The wordpress-php service is a replicated service with 2 replicas: ``` - name: wordpress-php - type: https://raw.githubusercontent.com/leendersr/deployment-manager/master/templates/replicatedservice/v2/replicatedservice.py + type: https://raw.githubusercontent.com/kubernetes/deployment-manager/master/templates/replicatedservice/v2/replicatedservice.py properties: service_name: wordpress-php service_port: {{ WORDPRESS_PHP_PORT }} @@ -126,7 +126,7 @@ The NFS service is a replicated service with a single replica that is available ``` - name: nfs - type: https://raw.githubusercontent.com/leendersr/deployment-manager/master/templates/nfs/v1/nfs.jinja + type: https://raw.githubusercontent.com/kubernetes/deployment-manager/master/templates/nfs/v1/nfs.jinja properties: ip: {{ NFS_SERVER_IP }} port: {{ NFS_SERVER_PORT }} diff --git a/examples/wordpress/wordpress.jinja b/examples/wordpress/wordpress.jinja index 4c409e02b..08159e3cb 100644 --- a/examples/wordpress/wordpress.jinja +++ b/examples/wordpress/wordpress.jinja @@ -19,14 +19,14 @@ resources: - name: nfs - type: https://raw.githubusercontent.com/leendersr/deployment-manager/master/templates/nfs/v1/nfs.jinja + type: https://raw.githubusercontent.com/kubernetes/deployment-manager/master/templates/nfs/v1/nfs.jinja properties: ip: {{ NFS_SERVER_IP }} port: {{ NFS_SERVER_PORT }} disk: {{ NFS_SERVER_DISK }} fstype: {{NFS_SERVER_DISK_FSTYPE }} - name: nginx - type: https://raw.githubusercontent.com/leendersr/deployment-manager/master/templates/replicatedservice/v2/replicatedservice.py + type: https://raw.githubusercontent.com/kubernetes/deployment-manager/master/templates/replicatedservice/v2/replicatedservice.py properties: service_port: {{ NGINX_PORT }} container_port: {{ NGINX_PORT }} @@ -38,7 +38,7 @@ resources: persistentVolumeClaim: claimName: nfs - name: mysql - type: https://raw.githubusercontent.com/leendersr/deployment-manager/master/templates/replicatedservice/v2/replicatedservice.py + type: https://raw.githubusercontent.com/kubernetes/deployment-manager/master/templates/replicatedservice/v2/replicatedservice.py properties: service_port: {{ MYSQL_PORT }} container_port: {{ MYSQL_PORT }} @@ -53,7 +53,7 @@ resources: pdName: {{ MYSQL_DISK }} fsType: {{ MYSQL_DISK_FSTYPE }} - name: wordpress-php - type: https://raw.githubusercontent.com/leendersr/deployment-manager/master/templates/replicatedservice/v2/replicatedservice.py + type: https://raw.githubusercontent.com/kubernetes/deployment-manager/master/templates/replicatedservice/v2/replicatedservice.py properties: service_name: wordpress-php service_port: {{ WORDPRESS_PHP_PORT }}