Skip to content

Commit 4a2f5bb

Browse files
committed
updated links to remove karpikpl references
1 parent d80e1d1 commit 4a2f5bb

File tree

6 files changed

+15
-15
lines changed

6 files changed

+15
-15
lines changed

DEPLOYMENT.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ The simplest way to deploy is to use the "one-click" option that creates resourc
2727

2828
![Azure ARM Deployment](./azure-deploy/arm-deployment.png)
2929

30-
Application will use a pre-built docker image hosted in GitHub registry: `ghcr.io/karpikpl/copilot-metrics-viewer-with-proxy`.
30+
Application will use a pre-built docker image hosted in GitHub registry: `ghcr.io/github-copilot-resources/copilot-metrics-viewer-with-proxy`.
3131

3232
**Prerequisites:** Contributor permission to a resource group in Azure and a subscription with the `Microsoft.App` resource provider enabled.
3333

@@ -36,13 +36,13 @@ Application will use a pre-built docker image hosted in GitHub registry: `ghcr.i
3636
3737
1. **Option 1 - Using a Personal Access Token in the Backend**:
3838

39-
[![Deploy to Azure](https://aka.ms/deploytoazurebutton)](https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fraw.githubusercontent.com%2Fkarpikpl%2Fcopilot-metrics-viewer%2Fmain%2Fazure-deploy%2Fwith-token%2Fazuredeploy.json)
39+
[![Deploy to Azure](https://aka.ms/deploytoazurebutton)](https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fraw.githubusercontent.com%2Fgithub-copilot-resources%2Fcopilot-metrics-viewer%2Fmain%2Fazure-deploy%2Fwith-token%2Fazuredeploy.json)
4040

4141
2. **Option 2 - Using GitHub App Registration and GitHub Authentication**:
4242

4343
When using this method, [register your app in Github first](#github-app-registration).
4444

45-
[![Deploy to Azure](https://aka.ms/deploytoazurebutton)](https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fraw.githubusercontent.com%2Fkarpikpl%2Fcopilot-metrics-viewer%2Fmain%2Fazure-deploy%2Fwith-app-registration%2Fazuredeploy.json)
45+
[![Deploy to Azure](https://aka.ms/deploytoazurebutton)](https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fraw.githubusercontent.com%2Fgithub-copilot-resources%2Fcopilot-metrics-viewer%2Fmain%2Fazure-deploy%2Fwith-app-registration%2Fazuredeploy.json)
4646

4747
**Important**: After deploying Option 2, the redirect URI needs to be updated with the URL of the deployed container app.
4848

@@ -59,7 +59,7 @@ Application will use a pre-built docker image hosted in GitHub registry: `ghcr.i
5959
> When deploying to a private network, specify a subnet (at least /23) for the Azure Container Apps Environment.
6060
App deployment does not create any DNS entries for the application, in order to create a private DNS Zone linked to provided Virtual Network, follow up the deployment with DNS deployment targeting same resource group:
6161
>
62-
>[![DNS Zone deploy to Azure](https://aka.ms/deploytoazurebutton)](https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fraw.githubusercontent.com%2Fkarpikpl%2Fcopilot-metrics-viewer%2Fmain%2Fazure-deploy%2Fdns%2Fazuredeploy.json)
62+
>[![DNS Zone deploy to Azure](https://aka.ms/deploytoazurebutton)](https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fraw.githubusercontent.com%2Fgithub-copilot-resources%2Fcopilot-metrics-viewer%2Fmain%2Fazure-deploy%2Fdns%2Fazuredeploy.json)
6363
6464
## Scenario 2: Azure Deployment with azd
6565
@@ -113,7 +113,7 @@ docker run -it --rm -p 3000:3000 \
113113
-e GITHUB_CLIENT_ID=<client id> \
114114
-e GITHUB_CLIENT_SECRET=<client secret for the GH App> \
115115
-e SESSION_SECRET=<random string> \
116-
ghcr.io/karpikpl/copilot-metrics-viewer-with-proxy
116+
ghcr.io/github-copilot-resources/copilot-metrics-viewer-with-proxy
117117
```
118118

119119
or with PAT token and enterprise:
@@ -125,7 +125,7 @@ docker run -it --rm -p 3000:3000 \
125125
-e VUE_APP_GITHUB_ENT=<enterprise name> \
126126
-e VUE_APP_GITHUB_TOKEN=<github PAT> \
127127
-e SESSION_SECRET=<random string> \
128-
ghcr.io/karpikpl/copilot-metrics-viewer-with-proxy
128+
ghcr.io/github-copilot-resources/copilot-metrics-viewer-with-proxy
129129
```
130130

131131
or with PAT token and organization:
@@ -137,7 +137,7 @@ docker run -it --rm -p 3000:3000 \
137137
-e VUE_APP_GITHUB_ORG=<org name> \
138138
-e VUE_APP_GITHUB_TOKEN=<github PAT> \
139139
-e SESSION_SECRET=<random string> \
140-
ghcr.io/karpikpl/copilot-metrics-viewer-with-proxy
140+
ghcr.io/github-copilot-resources/copilot-metrics-viewer-with-proxy
141141
```
142142

143143
## Github App Registration

azure-deploy/dns/metadata.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
"itemDisplayName": "Create DNS Zones for Azure Container App",
44
"description": "This template creates a private DNS Zone for Azure Container App showing GitHub copilot metrics",
55
"summary": "Create Azure Container App showing GitHub copilot metrics",
6-
"githubUsername": "karpikpl",
7-
"docOwner": "karpikpl",
6+
"githubUsername": "github-copilot-resources",
7+
"docOwner": "github-copilot-resources",
88
"dateUpdated": "2024-08-02",
99
"type": "Application",
1010
"tags": {

azure-deploy/with-app-registration/azuredeploy.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
},
4242
"metrics-viewer-docker-image": {
4343
"type": "string",
44-
"defaultValue": "ghcr.io/karpikpl/copilot-metrics-viewer-with-proxy:latest",
44+
"defaultValue": "ghcr.io/github-copilot-resources/copilot-metrics-viewer-with-proxy:latest",
4545
"metadata": {
4646
"description": "Docker image for metrics viewer - use default or replace with your own"
4747
}

azure-deploy/with-app-registration/metadata.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
"itemDisplayName": "Create a Azure Container App",
44
"description": "This template creates a Azure Container App showing GitHub copilot metrics",
55
"summary": "Create Azure Container App showing GitHub copilot metrics",
6-
"githubUsername": "karpikpl",
7-
"docOwner": "karpikpl",
6+
"githubUsername": "github-copilot-resources",
7+
"docOwner": "github-copilot-resources",
88
"dateUpdated": "2024-08-02",
99
"type": "Application",
1010
"tags": {

azure-deploy/with-token/azuredeploy.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
},
3636
"metrics-viewer-docker-image": {
3737
"type": "string",
38-
"defaultValue": "ghcr.io/karpikpl/copilot-metrics-viewer-with-proxy:latest",
38+
"defaultValue": "ghcr.io/github-copilot-resources/copilot-metrics-viewer-with-proxy:latest",
3939
"metadata": {
4040
"description": "Docker image for metrics viewer - use default or replace with your own"
4141
}

azure-deploy/with-token/metadata.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
"itemDisplayName": "Create a Azure Container App",
44
"description": "This template creates a Azure Container App showing GitHub copilot metrics",
55
"summary": "Create Azure Container App showing GitHub copilot metrics",
6-
"githubUsername": "karpikpl",
7-
"docOwner": "karpikpl",
6+
"githubUsername": "github-copilot-resources",
7+
"docOwner": "github-copilot-resources",
88
"dateUpdated": "2024-08-02",
99
"type": "Application",
1010
"tags": {

0 commit comments

Comments
 (0)