Skip to content

Commit e8ccaf2

Browse files
authored
Delete GLOUD_PROJECT variable (#274)
Locally, users should use GOOGLE_APPLICATION_CREDENTIALS. On GCP, the metadata is used autmatically. This commit does not change the GKE sample. Ref: #251
1 parent 95ebf52 commit e8ccaf2

40 files changed

+20
-114
lines changed

.kokoro/e2e-tests/container/build.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -76,15 +76,15 @@ export NVM_DIR="$HOME/.nvm"
7676
nvm install 8
7777

7878
# Install Node dependencies
79-
yarn global add @google-cloud/nodejs-repo-tools
79+
npm install -g @google-cloud/nodejs-repo-tools
8080
cd github/nodejs-getting-started/${BOOKSHELF_DIRECTORY}
8181

8282
# Copy secrets
8383
cp ${KOKORO_GFILE_DIR}/secrets-config.json config.json
8484
cp $GOOGLE_APPLICATION_CREDENTIALS key.json
8585

8686
# Install dependencies (for running the tests, not the apps themselves)
87-
yarn install
87+
npm install
8888

8989
# Build and deploy Docker images
9090
docker build -t gcr.io/${GCLOUD_PROJECT}/bookshelf .

.kokoro/presubmit/cloudsql.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export NODE_ENV=development
2929
export DATA_BACKEND="cloudsql"
3030

3131
# Configure gcloud
32-
export GCLOUD_PROJECT=nodejs-getting-started-tests
32+
GCLOUD_PROJECT=nodejs-getting-started-tests
3333
export GOOGLE_APPLICATION_CREDENTIALS=${KOKORO_GFILE_DIR}/secrets-key.json
3434
gcloud auth activate-service-account --key-file "$GOOGLE_APPLICATION_CREDENTIALS"
3535
gcloud config set project $GCLOUD_PROJECT

.kokoro/presubmit/datastore.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export NODE_ENV=development
2929
export DATA_BACKEND="datastore"
3030

3131
# Configure gcloud
32-
export GCLOUD_PROJECT=nodejs-getting-started-tests
32+
GCLOUD_PROJECT=nodejs-getting-started-tests
3333
export GOOGLE_APPLICATION_CREDENTIALS=${KOKORO_GFILE_DIR}/secrets-key.json
3434
gcloud auth activate-service-account --key-file "$GOOGLE_APPLICATION_CREDENTIALS"
3535
gcloud config set project $GCLOUD_PROJECT

.kokoro/presubmit/mongodb.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export NODE_ENV=development
2626
export DATA_BACKEND="mongodb"
2727

2828
# Configure gcloud
29-
export GCLOUD_PROJECT=nodejs-getting-started-tests
29+
GCLOUD_PROJECT=nodejs-getting-started-tests
3030
export GOOGLE_APPLICATION_CREDENTIALS=${KOKORO_GFILE_DIR}/secrets-key.json
3131
gcloud auth activate-service-account --key-file "$GOOGLE_APPLICATION_CREDENTIALS"
3232
gcloud config set project $GCLOUD_PROJECT

2-structured-data/books/model-datastore.js

+1-4
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,9 @@
1414
'use strict';
1515

1616
const Datastore = require('@google-cloud/datastore');
17-
const config = require('../config');
1817

1918
// [START config]
20-
const ds = Datastore({
21-
projectId: config.get('GCLOUD_PROJECT'),
22-
});
19+
const ds = Datastore();
2320
const kind = 'Book';
2421
// [END config]
2522

2-structured-data/config.js

-7
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ nconf
2424
// 2. Environment variables
2525
.env([
2626
'DATA_BACKEND',
27-
'GCLOUD_PROJECT',
2827
'INSTANCE_CONNECTION_NAME',
2928
'MYSQL_USER',
3029
'MYSQL_PASSWORD',
@@ -41,18 +40,12 @@ nconf
4140
// configuration.
4241
DATA_BACKEND: 'datastore',
4342

44-
// This is the id of your project in the Google Cloud Developers Console.
45-
GCLOUD_PROJECT: '',
46-
4743
MYSQL_USER: '',
4844
MYSQL_PASSWORD: '',
4945

5046
PORT: 8080,
5147
});
5248

53-
// Check for required settings
54-
checkConfig('GCLOUD_PROJECT');
55-
5649
if (nconf.get('DATA_BACKEND') === 'cloudsql') {
5750
checkConfig('MYSQL_USER');
5851
checkConfig('MYSQL_PASSWORD');

2-structured-data/test/_test-config.js

-1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,5 @@ module.exports = {
2828
},
2929
url: `http://localhost:${PORT}`,
3030
version: process.env.GAE_VERSION || TESTNAME,
31-
project: process.env.GCLOUD_PROJECT,
3231
msg: `Bookshelf`,
3332
};

2-structured-data/test/app.test.js

-3
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,6 @@ test(`should check config`, t => {
5151

5252
nconfMock.DATA_BACKEND = `datastore`;
5353

54-
t.throws(testFunc, Error, getMsg(`GCLOUD_PROJECT`));
55-
nconfMock.GCLOUD_PROJECT = `project`;
56-
5754
t.notThrows(testFunc);
5855

5956
nconfMock.DATA_BACKEND = `cloudsql`;

3-binary-data/books/model-datastore.js

+1-4
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,8 @@
1414
'use strict';
1515

1616
const Datastore = require('@google-cloud/datastore');
17-
const config = require('../config');
1817

19-
const ds = Datastore({
20-
projectId: config.get('GCLOUD_PROJECT'),
21-
});
18+
const ds = Datastore();
2219
const kind = 'Book';
2320

2421
// Translates from Datastore's entity format to

3-binary-data/config.js

-5
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ nconf
2525
.env([
2626
'CLOUD_BUCKET',
2727
'DATA_BACKEND',
28-
'GCLOUD_PROJECT',
2928
'INSTANCE_CONNECTION_NAME',
3029
'MYSQL_USER',
3130
'MYSQL_PASSWORD',
@@ -45,17 +44,13 @@ nconf
4544
// configuration.
4645
DATA_BACKEND: 'datastore',
4746

48-
// This is the id of your project in the Google Cloud Developers Console.
49-
GCLOUD_PROJECT: '',
50-
5147
MYSQL_USER: '',
5248
MYSQL_PASSWORD: '',
5349

5450
PORT: 8080,
5551
});
5652

5753
// Check for required settings
58-
checkConfig('GCLOUD_PROJECT');
5954
checkConfig('CLOUD_BUCKET');
6055

6156
if (nconf.get('DATA_BACKEND') === 'cloudsql') {

3-binary-data/lib/images.js

+1-3
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,7 @@ const config = require('../config');
1818

1919
const CLOUD_BUCKET = config.get('CLOUD_BUCKET');
2020

21-
const storage = Storage({
22-
projectId: config.get('GCLOUD_PROJECT'),
23-
});
21+
const storage = Storage();
2422
const bucket = storage.bucket(CLOUD_BUCKET);
2523

2624
// Returns the public, anonymously accessable URL to a given Cloud Storage

3-binary-data/test/_test-config.js

-1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,5 @@ module.exports = {
2828
},
2929
url: `http://localhost:${PORT}`,
3030
version: process.env.GAE_VERSION || TESTNAME,
31-
project: process.env.GCLOUD_PROJECT,
3231
msg: `Bookshelf`,
3332
};

3-binary-data/test/app.test.js

-3
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,6 @@ test(`should check config`, t => {
5151

5252
nconfMock.DATA_BACKEND = `datastore`;
5353

54-
t.throws(testFunc, Error, getMsg(`GCLOUD_PROJECT`));
55-
nconfMock.GCLOUD_PROJECT = `project`;
56-
5754
t.throws(testFunc, Error, getMsg(`CLOUD_BUCKET`));
5855
nconfMock.CLOUD_BUCKET = `bucket`;
5956

4-auth/books/model-datastore.js

+1-4
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,8 @@
1414
'use strict';
1515

1616
const Datastore = require('@google-cloud/datastore');
17-
const config = require('../config');
1817

19-
const ds = Datastore({
20-
projectId: config.get('GCLOUD_PROJECT'),
21-
});
18+
const ds = Datastore();
2219
const kind = 'Book';
2320

2421
// Translates from Datastore's entity format to

4-auth/config.js

-5
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ nconf
2525
.env([
2626
'CLOUD_BUCKET',
2727
'DATA_BACKEND',
28-
'GCLOUD_PROJECT',
2928
'MEMCACHE_URL',
3029
'MEMCACHE_USERNAME',
3130
'MEMCACHE_PASSWORD',
@@ -52,9 +51,6 @@ nconf
5251
// configuration.
5352
DATA_BACKEND: 'datastore',
5453

55-
// This is the id of your project in the Google Cloud Developers Console.
56-
GCLOUD_PROJECT: '',
57-
5854
MYSQL_USER: '',
5955
MYSQL_PASSWORD: '',
6056

@@ -69,7 +65,6 @@ nconf
6965
});
7066

7167
// Check for required settings
72-
checkConfig('GCLOUD_PROJECT');
7368
checkConfig('CLOUD_BUCKET');
7469
checkConfig('OAUTH2_CLIENT_ID');
7570
checkConfig('OAUTH2_CLIENT_SECRET');

4-auth/lib/images.js

+1-3
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,7 @@ const config = require('../config');
1818

1919
const CLOUD_BUCKET = config.get('CLOUD_BUCKET');
2020

21-
const storage = Storage({
22-
projectId: config.get('GCLOUD_PROJECT'),
23-
});
21+
const storage = Storage();
2422
const bucket = storage.bucket(CLOUD_BUCKET);
2523

2624
// Returns the public, anonymously accessable URL to a given Cloud Storage

4-auth/test/_test-config.js

-1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,5 @@ module.exports = {
2828
},
2929
url: `http://localhost:${PORT}`,
3030
version: process.env.GAE_VERSION || TESTNAME,
31-
project: process.env.GCLOUD_PROJECT,
3231
msg: `Bookshelf`,
3332
};

4-auth/test/app.test.js

-3
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,6 @@ test(`should check config`, t => {
5151

5252
nconfMock.DATA_BACKEND = `datastore`;
5353

54-
t.throws(testFunc, Error, getMsg(`GCLOUD_PROJECT`));
55-
nconfMock.GCLOUD_PROJECT = `project`;
56-
5754
t.throws(testFunc, Error, getMsg(`CLOUD_BUCKET`));
5855
nconfMock.CLOUD_BUCKET = `bucket`;
5956

5-logging/books/model-datastore.js

+1-4
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,8 @@
1414
'use strict';
1515

1616
const Datastore = require('@google-cloud/datastore');
17-
const config = require('../config');
1817

19-
const ds = Datastore({
20-
projectId: config.get('GCLOUD_PROJECT'),
21-
});
18+
const ds = Datastore();
2219
const kind = 'Book';
2320

2421
// Translates from Datastore's entity format to

5-logging/config.js

-5
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ nconf
2525
.env([
2626
'CLOUD_BUCKET',
2727
'DATA_BACKEND',
28-
'GCLOUD_PROJECT',
2928
'MEMCACHE_URL',
3029
'MEMCACHE_USERNAME',
3130
'MEMCACHE_PASSWORD',
@@ -52,9 +51,6 @@ nconf
5251
// configuration.
5352
DATA_BACKEND: 'datastore',
5453

55-
// This is the id of your project in the Google Cloud Developers Console.
56-
GCLOUD_PROJECT: '',
57-
5854
MYSQL_USER: '',
5955
MYSQL_PASSWORD: '',
6056

@@ -69,7 +65,6 @@ nconf
6965
});
7066

7167
// Check for required settings
72-
checkConfig('GCLOUD_PROJECT');
7368
checkConfig('CLOUD_BUCKET');
7469
checkConfig('OAUTH2_CLIENT_ID');
7570
checkConfig('OAUTH2_CLIENT_SECRET');

5-logging/lib/images.js

+1-3
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,7 @@ const config = require('../config');
1818

1919
const CLOUD_BUCKET = config.get('CLOUD_BUCKET');
2020

21-
const storage = Storage({
22-
projectId: config.get('GCLOUD_PROJECT'),
23-
});
21+
const storage = Storage();
2422
const bucket = storage.bucket(CLOUD_BUCKET);
2523

2624
// Returns the public, anonymously accessable URL to a given Cloud Storage

5-logging/test/_test-config.js

-1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,5 @@ module.exports = {
2828
},
2929
url: `http://localhost:${PORT}`,
3030
version: process.env.GAE_VERSION || TESTNAME,
31-
project: process.env.GCLOUD_PROJECT,
3231
msg: `Bookshelf`,
3332
};

5-logging/test/app.test.js

-3
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,6 @@ test(`should check config`, t => {
5151

5252
nconfMock.DATA_BACKEND = `datastore`;
5353

54-
t.throws(testFunc, Error, getMsg(`GCLOUD_PROJECT`));
55-
nconfMock.GCLOUD_PROJECT = `project`;
56-
5754
t.throws(testFunc, Error, getMsg(`CLOUD_BUCKET`));
5855
nconfMock.CLOUD_BUCKET = `bucket`;
5956

6-pubsub/books/model-datastore.js

+1-4
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,9 @@
1414
'use strict';
1515

1616
const Datastore = require('@google-cloud/datastore');
17-
const config = require('../config');
1817
const background = require('../lib/background');
1918

20-
const ds = Datastore({
21-
projectId: config.get('GCLOUD_PROJECT'),
22-
});
19+
const ds = Datastore();
2320
const kind = 'Book';
2421

2522
// Translates from Datastore's entity format to

6-pubsub/config.js

-5
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ nconf
2525
.env([
2626
'CLOUD_BUCKET',
2727
'DATA_BACKEND',
28-
'GCLOUD_PROJECT',
2928
'MEMCACHE_URL',
3029
'MEMCACHE_USERNAME',
3130
'MEMCACHE_PASSWORD',
@@ -53,9 +52,6 @@ nconf
5352
// configuration.
5453
DATA_BACKEND: 'datastore',
5554

56-
// This is the id of your project in the Google Cloud Developers Console.
57-
GCLOUD_PROJECT: '',
58-
5955
// Connection url for the Memcache instance used to store session data
6056
MEMCACHE_URL: 'localhost:11211',
6157

@@ -75,7 +71,6 @@ nconf
7571
});
7672

7773
// Check for required settings
78-
checkConfig('GCLOUD_PROJECT');
7974
checkConfig('CLOUD_BUCKET');
8075
checkConfig('OAUTH2_CLIENT_ID');
8176
checkConfig('OAUTH2_CLIENT_SECRET');

6-pubsub/lib/background.js

+1-3
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,7 @@ const logging = require('./logging');
1919

2020
const topicName = config.get('TOPIC_NAME');
2121

22-
const pubsub = new PubSub({
23-
projectId: config.get('GCLOUD_PROJECT'),
24-
});
22+
const pubsub = new PubSub();
2523

2624
// This configuration will automatically create the topic if
2725
// it doesn't yet exist. Usually, you'll want to make sure

6-pubsub/lib/images.js

+1-3
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,7 @@ const logging = require('./logging');
2020

2121
const CLOUD_BUCKET = config.get('CLOUD_BUCKET');
2222

23-
const storage = Storage({
24-
projectId: config.get('GCLOUD_PROJECT'),
25-
});
23+
const storage = Storage();
2624
const bucket = storage.bucket(CLOUD_BUCKET);
2725

2826
// Downloads a given image (by URL) and then uploads it to

6-pubsub/test/_test-config.js

-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ module.exports = {
2626
port: PORT,
2727
url: `http://localhost:${PORT}`,
2828
version: process.env.GAE_VERSION || TESTNAME,
29-
project: process.env.GCLOUD_PROJECT,
3029
env: {
3130
PORT: PORT,
3231
TOPIC_NAME: `book-process-queue-${TESTNAME}`,

6-pubsub/test/_test-config.worker.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@
1414
'use strict';
1515

1616
const path = require(`path`);
17-
const PROJECT_ID = process.env.GCLOUD_PROJECT;
1817
const TESTNAME = `6-pubsub`;
1918
const PORT = 8091;
2019
const VERSION = `${process.env.GAE_VERSION || TESTNAME}`;
20+
const PROJECT_ID = process.env.GCLOUD_PROJECT;
2121

2222
module.exports = {
2323
test: TESTNAME,
@@ -31,7 +31,6 @@ module.exports = {
3131
TOPIC_NAME: `book-process-queue-${TESTNAME}`,
3232
},
3333
version: VERSION,
34-
project: PROJECT_ID,
3534
};
3635

3736
if (process.env.E2E_TESTS) {

0 commit comments

Comments
 (0)