Skip to content
This repository has been archived by the owner on Apr 28, 2020. It is now read-only.

Commit

Permalink
Move cloudInit.js to k8s folder
Browse files Browse the repository at this point in the history
  • Loading branch information
rawagner committed Feb 11, 2019
1 parent 6ff7ea0 commit 91ff57a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/k8s/request/cloudInit.js → src/k8s/cloudInit.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { safeDump } from 'js-yaml';

import { CLOUDINIT_DISK } from '../../constants';
import { CLOUDINIT_DISK } from '../constants';

const resolveScriptHeader = userData => {
const validScriptHeaders = [
Expand Down
2 changes: 1 addition & 1 deletion src/k8s/request.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ import {
settingsValue,
selectVm,
} from './selectors';
import { CloudInit } from './request/cloudInit';
import { CloudInit } from './cloudInit';

const IS_TEMPLATE = 'isTemplate';

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { CloudInit } from '../cloudInit';

import { containerCloudTemplate } from '../../../tests/mocks/user_template';
import { selectVm } from '../../selectors';
import { containerCloudTemplate } from '../../tests/mocks/user_template';
import { selectVm } from '../selectors';

const hostname = 'blue.castle';

Expand Down

0 comments on commit 91ff57a

Please sign in to comment.